内容检测 msgSecCheck 真机请求超时
return new Promise((resolve, reject) => {
this.requestHelper.post(`https://api.weixin.qq.com/wxa/msg_sec_check?access_token=${accesstoken}`, { content }).then(res => {
if (res.errcode != 0) {
reject();
}else{
resolve();
}
})
})
2 回复