为什么我的带妈了,还是可以检测通过
文本内容安全识别,没有错误反馈?//违法,违规,涉黄文字校验,调用云函数校验 wx.cloud.callFunction({ name: 'contentCheck', data: { openid: that.data.openid, content: that.data.content //传入自由文本 that.data.contact+""+ } }).then(ck_res => { console.log("ck_res",ck_res) //文本检测反馈结果 } 文本内容安全识别 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.msgSecCheck({ "openid": 'OPENID', "scene": 1, "version": 2, "content": 'hello world!' }) return result } catch (err) { return err } } 调用这个接口的时候。无论输入什么词汇。反馈给我的都是正常。我想知道什么词才不通过???
01-04