uniapp getUserProfile 登录使用

2021/4/24 18:25:37

本文主要是介绍uniapp getUserProfile 登录使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

小程序登录、用户信息相关接口调整说明:https://developers.weixin.qq.com/community/develop/doc/000cacfa20ce88df04cb468bc52801
考虑到近期开发者对小程序登录、用户信息相关接口调整的相关反馈,为优化开发者调整接口的体验,回收wx.getUserInfo接口可获取用户授权的个人信息能力的截止时间由2021年4月13日调整至2021年4月28日24时。

所以无法使用wx.getUserInfo来做微信授权了,而新增加了getUserProfile
使用步骤

<button type="primary" @click="loginTest">授权登录</button>


loginTest() { // 获取用户信息
			var that = this
				let code = '';
				wx.login({
					success: (res) => {
						code = res.code
						console.log(res.code);
					}
				})
				uni.getUserProfile({
					desc: '登录',
					success: async (res) => {
					// 后端接口
						const data = await that.api('/appWxLogin', 'POST', {
							code: code,
							encryptedData:res.encryptedData,
							iv:res.iv
						})
						console.log(data);
					},
					fail: (res) => {
						console.log(res)
					}
				});
			},


这篇关于uniapp getUserProfile 登录使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程