美文网首页
微信 {errcode: 40052, errmsg: "inv

微信 {errcode: 40052, errmsg: "inv

作者: jung_xx | 来源:发表于2018-05-08 22:56 被阅读0次

    服务端:
    微信测试生成二维码接口按开发手册上发起基于JSON参数的流传输.
    原请求

    String  json = "{'expire_seconds': 604800, 'action_name': 'QR_SCENE', 'action_info': {'scene': {'scene_id': 123}}}";
    

    返回错误代码:

    {errcode: 40052, errmsg: "invalid action name}
    

    百度搜索40052各种被带偏...

    修改后的请求json字符串,加入"转义符.

    String  json = "{\"expire_seconds\": 604800, \"action_name\": \"QR_SCENE\", \"action_info\": {\"scene\": {\"scene_id\": 123}}}";;
    

    测试成功.

    附:如果前端调用该接口,需要考虑ajax跨域问题.

    相关文章

      网友评论

          本文标题:微信 {errcode: 40052, errmsg: "inv

          本文链接:https://www.haomeiwen.com/subject/uidgrftx.html