微信小程序的授权登录

微信小程序的授权登录

dologgin(e) {
		console.log(e.detail.errMsg);
		console.log(e.detail.userInfo);
		console.log(e.detail.rawData);
		wx.login({
			//授权登陆五分钟
			success(res) {
				//获取是否授权
				console.log(res);
				//获取登陆的临时凭证
				var code = res.code;
						//调用后端,获取微信的session——key,
						// 可以通过 wx.getSetting 先查询一下用户是否授权了 "scope.record" 这个 scope
				wx.getUserInfo({
					//点击授权后
					withCredentials: true,
					success(res) {
						//获得code后进入后台
						wx.request({
							url: 'http://xxxxxxxxxxxxxx.com/wxLogin?code=' + code,
							header: { "Content-Type": "application/x-www-form-urlencoded" },
							method: 'POST',
							success(result) {
								wx.setStorageSync('key', result.data.data.openid);
								//成功跳主页
								wx.reLaunch({
									url: '/pages/index/index'
								});
							}
						})
					}, fail(res) {//没有授权
						console.log("没有授权!!!!!")
					}
				})
			}
		})
},
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值