珊瑚安全
[图片]
请问一下检测视频类的使用这个吗(mediaCheckAsync)
请问测试阶段怎么测imgSecCheck
[图片] APPID:wx955d8d61806b3390 运营不易,确实调用了平台所有的审核接口,希望能重新审查一下,谢谢 [图片]
问题已解决!!! 套餐到期或者余额不足时会返回 { errcode: -10 || 9301010 } —————————————————————————————————————————————— 珊瑚接口文档地址:https://developers.weixin.qq.com/community/servicemarket/detail/00040275a14468e0e689194b251015 我的问题:珊瑚文本内容安全接口在超出用量和超出时间限制,errcode 返回什么? 我的目的: 需要明确 errcode 的合法值 成功 : 0 超出用量 : ??? 超出时间 : ??? 我需要根据这个errcode对用户评论进行操作,谢谢。
调用security.msgSecCheck接口,但是一直返回ok,用的java语言,post请求,[图片]
我们的小程序提审,驳回理由里面有IM信息里面内容不符合安全要求,但是我们的IM都调用了微信小程序要求的文字和图片验证接口。我们发现有人发布“迷奸&偷拍&资源&纸醉金迷”这样的字样做测试,但是这些字样我们直接调用微信的安全接口,返回是正常数据,是不是咱们微信的接口关键词库本身不支持这些字样的过滤?
// 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() // 云函数入口函数 exports.main = async (event, context) => { try { var result = await cloud.openapi.security.imgSecCheck({ media: { // contentType: 'image/jpg', contentType: 'image/*', value: Buffer.from(event.img) //imgcontent:event.img } }) return result } catch (err) { return err } } 调用: 我用的是有赞vant uploadr组件获取了临时文件的地址 afterRead(event) { const { file } = event.detail; //获取临时文件路径 const fileList = this.data['fileList1']; this.setData({ [`fileList1`]: fileList.concat(file) }); //存入fileList1数组 console.log(this.data.fileList1[0].path);//查看输出的文件 为utl http://tmp/wxcda4cb82f8d9d46b.o6zAJs5UzBjZe6rkptj9M9Cxtz0s.tJrNexHpPXPM50faffa508d8443d2b12b93c45df17e3.jpg wx.cloud.callFunction({ // 云函数名称 name: 'checkimg', // 传给云函数的参数 data: ({ img: this.data.fileList1[0].path //黄图继续报正确 // img:event.detail //黄图继续报正确 //img: fileList.concat(file) }), }).then(res => { console.log(res); if (res.result.errCode == 0) { // console.log(res); //这里输入审核通过后的内容 } else { wx.hideLoading(); console.log(res); wx.showModal({ title: '提醒', content: '请注意言论', showCancel: false }) } } ) }, 得到的结果: errCode: 0 errMsg: "openapi.security.imgSecCheck:ok" [图片] 是黄图却可通过,但我用你们的“珊瑚安全小程序”判断,就显示不能通过,说明图片是黄图 这图片没有错误, 现我猜想是不是我date img 上传的类型会不会有误? 应该上传什么数据 ? 我上传 http://tmp/wxcda4cb82f8d9d46b.o6zAJs5UzBjZe6rkptj9M9Cxtz0s.tJrNexHpPXPM50faffa508d8443d2b12b93c45df17e3.jpg 还要转化吗?
服务器返回 { "errcode": 47001, "errmsg": "data format error hint: [zJmClDALRa-M1ikqA]" } post内容: data: { access_token: access_token, content: '123123' },
curl https://api.weixin.qq.com/wxa/img_sec_check?access_token=34_eRb2T33HexVw5dYbNDhenYMldvDHpEMBY3GUCCOl3IClaUGzwIT6DZQQAqE9gA8zULFtMxyEeb3TiXfR44o1yMf8pQ2J1iFqbBC_qSwgju5W9jnvYi123-BDkN -X POST -d 'media=https://jdk3t-qiye.oss-cn-shanghai.aliyuncs.com/backend_pic/dst/poster/2019/09/20/65b96fe5-927d-0078-2a37-984f7510e5cd.jpg' {"errcode":61007,"errmsg":"api is unauthorized to component hints: [4GLCA7qNe-321yTa!]"}
有没有这种得申诉通道。
使用此接口,在检测图片时候,如果图片内含有文字过多(例如文章截图,视频弹幕等),就会返回错误,感觉很气人,这是个很大的bug啊
加不了小助手微信
使用security.msgSecCheck,获取access_token,在微信开发者工具上和真机调试的时候 都可以获取到。但是,预览或者提交后,体验版本获取不到access_token
情况:使用敏感图片检查imgSecCheck,服务器没有响应(callFunction不执行回调函数) 在模拟器上能正常执行保存图片(回调函数里)的程序,但手机端不行。 同样的云函数在读入图片的时候能正常运行(模拟器、手机端都可以),在输出部分图片检测的时候仅在手机端发生异常。 请教一下为什么 [图片]
企业微信端审核失败,自定义发布内容,需要用敏感词过滤接口检测
不知道问题出在哪里? 一、云函数部分 config.json: { "permissions": { "openapi": [ "security.imgSecCheck" ] } } index.js: // 云函数入口文件 const cloud = require('wx-server-sdk'); cloud.init({env:cloud.DYNAMIC_CURRENT_ENV,}) // 云函数入口函数 exports.main = async(event, context) => { try { const result = await cloud.openapi.security.imgSecCheck({ media:{ header:{'Content-Type':'application/octet-stream'}, contentType:'image/png', value:Buffer.from(event.value)// Buffer.from()是必须的 } }) return result } catch (err) { return err } } 二、前端js: onUploadImg: function () { wx.chooseImage({ count: 1, sizeType: ['original', 'compressed'], sourceType: ['album', 'camera'], success:res =>{ const filePaths = res.tempFilePaths[0] if(filePaths && filePaths > 1024*1024){ tips('图片不能大于1M') return } console.log('res.tempFilePaths[0]: ',res.tempFilePaths[0]) wx.getFileSystemManager().readFile({ encoding:'base64', filePath:filePaths, success:res => { var buffer = res.data tips('图片检测中') console.log('readFile: ',buffer) wx.cloud.callFunction({ name:'imgCheck', data:{ value:buffer }, success : res1 => { console.log('1: ',res1.result) if(res1.result.errCode == 0){ } if(res1.result.errCode == 87014){ } }, fail:err => { } }) } }) } }) },
https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/sec-check/security.imgSecCheck.html 为啥我今日只调用接口7万多次就报我调用次数已经达到今日上限? https://api.weixin.qq.com/wxa/img_sec_check?access_token=34_IlRb3slt-OteWh_-TF7uOpPQrOvYBhZkFp2yhxQpok1mvb9gjB7p80y4s6dZmgno0d8265YihGt0yPVQjKi06aCvw-yNGNdUtgHGL0r_tuQrhJqxS-4B_u1l94AgwsSQL2vpw81GpCKKqTsHOQDaAGAUWJ [图片]
无论什么词都可以通过验证,是不是接口出现问题了;微信官方给的词,自己输入的词,都可以通过审核
我们这边接口调用会存在误判的情况 想问下有办法做模型优化吗 如: https://img.colahotpot.com/goods/CzFmMp8ERYmaKFiB1592077590110.jpg https://img.colahotpot.com/goods/DNcrp28KirzdeKTd1592069797215.jpg 还有许多 九万多张 检测出来 感觉有300张左右的误判
[图片]这个问题有人解决了吗???