收藏
回答

errcode:40029是什么原因,求教一下

在网上也搜了一部分,但是都不理想,有没有碰见这类问题的。。。求教


在获取到code之后


根据code,appid,sercet,获取信息。出的这个错

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

1 个回答

  • 祝通
    祝通
    2018-07-23

    //java代码

    String url = url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId +
           "&secret=" + appSecret + "&js_code=" + code + "&grant_type=authorization_code";


    //进行网络请求,访问url接口
    ResponseEntity<String> responseEntity = restTemplate.exchange(url, HttpMethod.GET, null, String.class);


    //结果

    <200,{"errcode":40029,"errmsg":"invalid code, hints: [ req_id: ******* ]"},{Connection=[keep-alive], Content-Type=[text/plain], Date=[Mon, 23 Jul 2018 09:34:34 GMT], Content-Length=[76]}>

    2018-07-23
    有用
    回复 1
    • 祝通
      祝通
      2018-07-23

      找到问题根源了。是因为我这个小程序之前用的是另一个appid。必须要新建一个小程序才能使用

      2018-07-23
      回复
登录 后发表内容