uniapp 小程序微信授权登录

4 篇文章 0 订阅
3 篇文章 0 订阅

小程序授权登录是小程序必不可少的功能,直接上我项目的原代码吧

第一步:
这里
我这里是判断用户环境,由于我项目需要配合三个端来使用,原生安卓和ios都需要嵌套我前端小程序的页面,所以这里写了两套

第二步:

调用uniapp提供的api,拿到code,用code来换取token和openid
在这里插入图片描述

直接上源码,希望能帮助到各位刚入行的前端小伙伴

在这里插入图片描述

要实现微信授权登录,你需要按照以下步骤进行操作: 1. 在微信公众平台申请开发者账号,并创建一个小程序。 2. 在小程序管理后台中,打开“设置”->“第三方设置”,将“网页授权域名”设置为你的服务器域名。 3. 在uniapp中,使用uni.login()方法获取用户的code。 4. 将获取到的code发送到服务器,使用微信官方提供的接口获取用户的openid和access_token。 5. 将获取到的openid和access_token保存在服务器端,返回给uniapp。 6. 在uniapp中,使用uni.getUserInfo()方法获取用户的基本信息,如昵称、头像等。 7. 将用户的基本信息保存在服务器端,返回给uniapp。 以下是一个简单的示例代码: ```html <!-- 登录页面 --> <template> <view> <button @tap="wxLogin">微信授权登录</button> </view> </template> <script> export default { methods: { wxLogin() { uni.login({ success(res) { // 将code发送到服务器 uni.request({ url: 'https://your.server.com/login', data: { code: res.code }, success(res) { // 获取到openid和access_token const { openid, access_token } = res.data // 将openid和access_token保存在storage中,用于后续接口请求 uni.setStorageSync('openid', openid) uni.setStorageSync('access_token', access_token) // 获取用户基本信息 uni.getUserInfo({ success(res) { // 将用户基本信息发送到服务器 uni.request({ url: 'https://your.server.com/userinfo', data: { openid, nickname: res.userInfo.nickname, avatar: res.userInfo.avatarUrl }, success(res) { // 用户信息保存成功,跳转到首页 uni.switchTab({ url: '/pages/index/index' }) } }) } }) } }) } }) } } } </script> ``` 在样式方面,可以使用uniapp提供的组件样式和自定义样式来实现。以下是一个简单的示例代码: ```html <!-- 登录页面 --> <template> <view class="container"> <image class="logo" src="/static/logo.png"></image> <view class="title">欢迎登录</view> <button class="login-btn" @tap="wxLogin">微信授权登录</button> </view> </template> <style> .container { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; } .logo { width: 100px; height: 100px; margin-bottom: 20px; } .title { font-size: 24px; font-weight: bold; margin-bottom: 20px; } .login-btn { width: 200px; height: 50px; background-color: #42b983; color: #fff; border-radius: 25px; font-size: 16px; font-weight: bold; text-align: center; line-height: 50px; } </style> ``` 以上示例代码仅供参考,具体实现方式还需根据项目需求进行调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值