微信小程序图片鉴黄

微信小程序图片鉴黄wx.chooseImage({count:2,sizeType:[‘original’,’compressed’],sourceType:[‘album’,’camera’],success(res){console.log(res);varfilePaths=res.tempFile…

因小程序不允许添加qq.com域名,故需要nginx转发

上传链接

https://check.com/wxa/img_sec_check?api=img_sec_check&access_token=XXXX

nginx转发

location / {
    if ( $arg_api = img_sec_check ){
        # 图片鉴黄
        proxy_pass https://api.weixin.qq.com;
        break;
    }
    try_files $uri $uri/ /index.php$is_args$args;
}

上传图片

 wx.chooseImage({
      count: 2,
      sizeType: ['original', 'compressed'],
      sourceType: ['album', 'camera'],
      success(res) {
        console.log(res);
        var filePaths = res.tempFilePaths;
        var filePath = '';//声明图片地址
        for (var i = 0; i < filePaths.length; i++) {
              filePath = filePaths[i];
              wx.uploadFile({
                url: "https://check.com\/wxa\/img_sec_check?access_token=24_XcPpQe4zMVLjwZKlTCUfatVklKpbMP0pUnohQ1_om28oAgLIzhDCE45glcf3lM9-58jxPgp9I0ecGMDXadoJLG626DKOS6KbrHLMBneDpd65a1IfwSh0g6AimKEMYWcAHASEC
                filePath: filePath,
                name: 'file',
                formData: {},
                success(res_2) {
                  console.log(filePath);
                  var json = JSON.parse(res_2.data);
                  console.log(json)
                  if (json.errcode === 0) {
                    console.log('通过');
                  } else {
                    console.log('未通过');
                  }
                }
              })
            }
      }
    })

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/38083.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注