结果:{"errcode":40029,"errmsg":"invalid code, rid: 6501191b-63a657db-4e308f4e"}
uni.getProvider({
"service": 'oauth',
success: function(res) {
if (~res.provider.indexOf('weixin')) {
uni.login({
"provider": 'weixin',
"onlyAuthorize": true,
success: function(loginRes) {
console.log('22222222', loginRes.code);
that.getApploginData(loginRes.code); //请求登录接口方法
},
fail: function(res) {
uni.showToast({
title: '微信登录失败1',
type: 'warning'
});
}
});
}
}
});
1 个回复
2***@qq.com
我也是和你一样的问题 ,你解决了吗