当前位置:   article > 正文

java实现微信小程序内容安全检测

检测小程序是否超出范围收集个人的信息的代码

首先吐槽下小程序的api写的si一样
下面是正题:
公司小程序审核多次不过,沟通后确认是用户ugc没有做内容安全检测;

小程序的内容安全

1.imgSecCheck 图片检测

a.图片智能鉴黄:涉及拍照的工具类应用(如美拍,识图类应用)用户拍照上传检测;电商类商品上架图片检测;媒体类用户文章里的图片检测等;
b.敏感人脸识别:用户头像;媒体类用户文章里的图片检测;社交类用户上传的图片检测等。 频率限制:单个 appId 调用上限为 2000 次/分钟,200,000 次/天*(图片大小限制:1M)

请求地址:

POST https://api.weixin.qq.com/wxa/img_sec_check?access_token=ACCESS_TOKEN

请求参数

属性类型默认值必填说明
access_tokenstring接口调用凭证
mediaFormData要检测的图片文件,格式支持PNG、JPEG、JPG、GIF,图片尺寸不超过 750px x 1334px
返回值 Object

返回的 JSON 数据包

属性类型说明
errcodenumber错误码(0, 47001, 87014)
errMsgstring错误信息(ok, data wrong, 内容含有违法违规内容)
Java代码
  1. public ResultEntity checkImgByInputStream(InputStream inputStream) throws HttpException {
  2. if(inputStream == null){
  3. return null;
  4. }
  5. //获取access_token
  6. String accessToken = getAccessToken();
  7. String url = String.format(imgSecCheckUrl, accessToken);
  8. HttpClient httpclient = HttpClients.createDefault();
  9. HttpPost request = new HttpPost(url);
  10. request.addHeader("Content-Type", "application/octet-stream");
  11. try {
  12. byte[] byt = new byte[inputStream.available()];
  13. inputStream.read(byt);
  14. request.setEntity(new ByteArrayEntity(byt, ContentType.create("image/jpg")));
  15. HttpResponse response = httpclient.execute(request);
  16. HttpEntity entity = response.getEntity();
  17. String result = EntityUtils.toString(entity, "UTF-8");// 转成string
  18. logger.info("response: " + result);
  19. ResultEntity resultEntity = JsonKit.parseObject(result, ResultEntity.class);
  20. return resultEntity;
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. } finally {
  24. if(inputStream != null){
  25. try {
  26. inputStream.close();
  27. } catch (IOException e) {
  28. e.printStackTrace();
  29. }
  30. }
  31. }
  32. return null;
  33. }

当图片大于给1M时,采用图片压缩,应用goodle开源的Thumbnails,现在是0.4.8版本

  1. <dependency>
  2. <groupId>net.coobird</groupId>
  3. <artifactId>thumbnailator</artifactId>
  4. <version>0.4.8</version>
  5. </dependency>

压缩图片(支持多种格式的书输入)

  1. //num 文件长度
  2. public InputStream compressImage(URLConnection connection, long num) throws IOException {
  3. if(num == 0 || connection == null){
  4. return null;
  5. }
  6. double multiple = 1.0 / (num / (1024 * 1024) + 1.0);
  7. BufferedImage image = Thumbnails.of(connection.getInputStream()).scale(multiple).asBufferedImage();
  8. ByteArrayOutputStream os = new ByteArrayOutputStream();
  9. ImageIO.write(image, "jpg", os);
  10. InputStream is = new ByteArrayInputStream(os.toByteArray());
  11. return is;
  12. }
2.msgSecCheck 文字检测

1.用户个人资料违规文字检测;
2.媒体新闻类用户发表文章,评论内容检测;
3.游戏类用户编辑上传的素材(如答题类小游戏用户上传的问题及答案)检测等。 频率限制:单个 appId 调用上限为 4000 次/分钟,2,000,000 次/天*

请求地址
POST https://api.weixin.qq.com/wxa/msg_sec_check?access_token=ACCESS_TOKEN
请求参数
属性类型默认值必填说明
access_tokenstring接口调用凭证
contentstring要检测的文本内容,长度不超过 500KB
返回值

返回的 JSON 数据包

属性类型说明
errcodenumber错误码
errMsgstring错误信息
java代码
  1. public ResultEntity checkMsg(String content) throws HttpException {
  2. String accessToken = getAccessToken();
  3. String url = String.format(msgSecCheckUrl, accessToken);
  4. Map<String, String> map = new HashMap<>();
  5. map.put("content", content);
  6. String result = HttpClientKit.postJson(url, JsonKit.toJson(map), 60 * 1000);
  7. if (StringUtils.isNotBlank(result)) {
  8. return JsonKit.parseObject(result, ResultEntity.class);
  9. }
  10. return null;
  11. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/577216
推荐阅读
相关标签
  

闽ICP备14008679号