收藏
回答

security.msgSecCheck:fail Invalid request param

框架类型 问题类型 终端类型 AppID 基础库版本
小程序 Bug 工具 wx1706752a378c986f 9.9.9

本地测试通过

相同的代码云端部署测试只好用过一次,之后就不好用了,麻烦专家给看看

index.js

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


测试数据:

{
  "content": "吃屎"
}


本地调试结果


云端测试结果:


云端测试成功过一次


回答关注问题邀请回答
收藏

1 个回答

  • Cheshire cat
    Cheshire cat
    2019-09-27

    建议不要用云端测试来测openapi的接口

    2019-09-27
    有用
    回复 3
    • Alex
      Alex
      2019-09-27
      我想使用云函数,在小程序里直接调用云函数,难道得从入门到放弃?
      2019-09-27
      回复
    • Cheshire cat
      Cheshire cat
      2019-09-27回复Alex
      直接调用云函数测试呢,不走那个云端测试?
      2019-09-27
      回复
    • Alex
      Alex
      2019-09-27
      晚上回家试试,感谢关注
      2019-09-27
      回复
登录 后发表内容
问题标签