时间:2019-05-04 来源:小程序工厂
T***:
//app.jsApp({
onLaunch: function() {
wx.login({
success: function(res) { if (res.code) { //发起网络请求
wx.request({
url: 'https://test.com/onLogin',
data: {
code: res.code
}
})
} else { console.log('登录失败!' + res.errMsg)
}
}
});
}
})在微信小程序的页面里可以拿到登录的code, 把code传到后台后,后台要拿到微信小程序的appid才能进行后续的操作,现在卡住在怎么拿授权方的appid那里了
゛***:
https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=open1453779503&token=&lang=zh_CN
授权的时候不是会返回微信小程序的相关信息吗?
微信小程序域名没备案怎么不能访问了-微信小程序教程