"errcode":40163,"errmsg":"code been used
发布于 7 年前 作者 gaona 1432 次浏览 来自 问答

小程序调用 wx.login() 获取 临时登录凭证code 

wx.login({

    success(res) {

        if (res.code) {

            console.log(‘登录成功!’)

            console.log(“服务端code:”+JSON.stringify(res.code))

        } else {

            console.log(‘登录失败!’ + res.errMsg)

        }

    }

});

服务端调用 auth.code2Session 接口

请求连接:https://api.weixin.qq.com/sns/jscode2session?appid=wx64****e021&secret=43de****1da7&js_code=023MVZhy15eDoa0Et4iy1SLVhy1MVZhS&grant_type=authorization_code

服务端报错,报错信息:

{“errcode”:40163,“errmsg”:“code been used, hints: [ req_id: 0IbF07aLRa-KW5Oua ]”}

40163 :临时登录凭证重复使用

然而的是并没有使用过,请问这个问题该怎么处理?

上周调用该接口没有问题,今天调用就出现以上问题。

1 回复

检查逻辑吧

回到顶部