uni-app微信小程序授权登录
微信小程序授权登入代码
<button class='bottom' type='primary' open-type="getUserInfo" withCredentials="true" lang="zh_CN" @click="getUserInfo">授权微信</button> getUserInfo() { uni.getUserProfile({ lang: 'zh_CN', desc: '登录', success: infoRes => { this.userInfo=infoRes.userInfo; //用户信息,微信头像,昵称等等 uni.login({ success(res){ console.log(res.code) //获取到的code } }) }, fail(res) { uni.showToast({ title:'登录授权失败', icon:'none', }) } }); }
作者:青茶
免责声明:文章、笔记等仅供分享、探讨、参考等学习之用,因此造成的任何后果概不负责。(如有错误、疏忽等问题,欢迎指正、讨论,谢谢)
本文版权归作者和博客园共有,欢迎转载,但请务必在文章页面明显位置给出原文连接,谢谢配合。