【微信小程序】微信登录和手机号快捷登录:


一、微信登录:

【1】文档:

【微信官方文档】https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/user-login/code2Session.html
在这里插入图片描述

【2】实现:
// #ifdef MP-WEIXIN
wx.login({
    
    
	success: function(res) {
    
    
		wx.request({
    
    
			url: "https://api.weixin.qq.com/sns/jscode2session",
			data: {
    
    
				appid: "自己的微信公众号获取",
				secret: "自己的微信公众号获取",
				js_code: res.code,
				grant_type: "authorization_code",
			},
			success: function(response) {
    
    
				const openid = response.data.openid;
				console.log("获取到的code:", res.code, "获取到的openid:", openid);
			}
		})
	}
})
// #endif

在这里插入图片描述
在这里插入图片描述

二、手机号快捷登录:

【1】文档:

【小程序中获取手机号的 API官方文档】https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/deprecatedGetPhoneNumber.html

【2】实现:

在这里插入图片描述

【3】注意:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_53791978/article/details/132455560