var options = {
method: 'POST',
uri: `https://api.weixin.qq.com/wxa/msg_sec_check?access_token=${access_token.token}`,
body: { content: “他妈的”},
headers: {
'Content-Type': 'application/json;charset=utf-8'
},
json: true // Automatically stringifies the body to JSON
};
var res_errCode = await rp(options)
.then(function (parsedBody) {
return parsedBody.errcode;
})
.catch(function (err) {
return err.errcode;
});
return res_errCode;
以上是云函数里调试敏感词检测,除了提供的样本以外返回都是 {"errcode":0,"errmsg":"ok"},unicode转为utf-8这个不知道要怎么设定
'Content-Type': 'application/json;charset=utf-8'
只设定了这个
骂人的是检测不出来的