内容审查接口均返回ok?请大神指导
发布于 8 年前 作者 xiuying12 14106 次浏览 来自 官方Issues

云函数:

// 云函数入口函数
exports.main = async(event, context) => {
  try {
    const res = await cloud.openapi.security.msgSecCheck({
      content: event.content
    })
    return res;
  } catch (err) {
    return err;
  }
}

小程序调用:

wx.cloud.init({})
    wx.cloud.callFunction({
      name: "msgseccheck",
      data: {
        content
      }
    }).then(
      msgRes => {
        console.log(msgRes)
        if (msgRes.result.errorCode == "87014") {
          wx.showToast({
            title: '文字含有违法违规内容',
            icon: 'none',
            duration: 1000,
          })
          setTimeout(function() {
            wx.navigateBack()
          }, 1000)
          return
        } else {
          //内容正常
        }
      }
    )
回到顶部