- 珊瑚图片内容检测API调用返回错误?
服务端调用API:https://api.weixin.qq.com/wxa/servicemarket?access_token={access_token} 返回错误信息:{ errcode: 9301008, errmsg: 'invalid api info rid: 5f8565cf-7da7aaf9-7b9c3259' } 有遇到过的吗? let requestData = { "service": "wx6a426f5a8a9ac3c0", "api": "imgSecCheck", "client_msg_id" : '12345', "data": { "Action": "ImageModeration", "Scenes": ["PORN", "TERRORISM"], "ImageUrl": "http://img.imkehou.com/wechatapp/sjyteacher/image/1541470466924", "ImageBase64": "", "Config": "", "Extra": "" } }; request({ url: reqUrl + access_token.access_token, method: "POST", json: true, headers: { "content-type": "application/json", }, body: requestData }, function(error, response, body) { if (!error && response.statusCode == 200) { return resolve(body); } else { console.log(error); return resolve(error); } });
2020-10-13 - 请问security.imgSecCheck能不能检测网络图片?
图片检测API:POST https://api.weixin.qq.com/wxa/img_sec_check?access_token=ACCESS_TOKEN 如果可以检测网络图片,那media参数需要怎么传呢?(Nodejs服务端)
2020-10-13 - 检测图片的接口调用问题?
POST https://api.weixin.qq.com/wxa/img_sec_check?access_token=ACCESS_TOKEN 我想问下 media 参数需要怎么传才对 [图片] picUrl是前端传过来的图片的云地址,直接报错了Error: form-data: ENOENT: no such file or directory, open 'D:\workspace\xxx\http:\img.file.com\wechatapp\student\image\1602496091514.png' 不知道怎么改了,望指教
2020-10-13 - 通过第三方平台授权的小程序,需要提现到零钱
我传的参数是平台商户id和平台appid返回openid和appid不匹配,请问如何解决!
2020-07-12 - 小程序上线后登陆页面的log图片加载不出来
如图所示:[图片]
2020-05-09