本地开发 code 是用 微信开发工具生成的
第一次使用就 返回 {'errcode': 40029, 'errmsg': 'invalid code, hints: [ req_id: cHEaMfwgE-JVSNAa ]'}
第二次 返回 {'errcode': 40163, 'errmsg': 'code been used, hints: [ req_id: FHEaL8yFe-MRy_NA ]'} 这个还可以理解 code只能用一次
问题在于 第一次 明明才生成的 没超过 五分钟 是什么原因呢, 肯定不是appid 跟 appsecret的问题,如果有错会报的
第一次就报错了 这个看起来是前后端appid或密钥不对应
App({
onLaunch: function () {
if (!wx.cloud) {
console.error('请使用 2.2.3 或以上的基础库以使用云能力')
} else {
wx.cloud.init({
// env 参数说明:
// env 参数决定接下来小程序发起的云开发调用(wx.cloud.xxx)会默认请求到哪个云环境的资源
// 此处请填入环境 ID, 环境 ID 可打开云控制台查看
// 如不填则使用默认环境(第一个创建的环境)
env: 'test-22ctg',
traceUser: true,
})
}
this.getLogin();
this.globalData = {}
},
getLogin: function () {
wx.login({
success: function (res) {
if (res.code) {
console.log(res.code)
}
}
})
}
})
贴代码,看返回信息只知道你的code有问题