Laravel 微信小程序后端实现用户登录的示例代码
作者:jinduo 发布时间:2024-06-05 15:40:52
标签:Laravel,小程序,用户登录
接上篇微信小程序后端搭建:分享:Laravel 微信小程序后端搭建
后端搭建好后第一件事就是用户登录认证,简单实现微信小程序登录认证
1.user 模型
use Laravel\Passport\HasApiTokens; 新增
use HasApiTokens, Notifiable;
protected $fillable = [
'id',
'name',
'email',
'email_verified_at',
'username',
'phone',
'avatar',//我用来把微信头像的/0清晰图片,存到又拍云上
'weapp_openid',
'nickname',
'weapp_avatar',
'country',
'province',
'city',
'language',
'location',
'gender',
'level',//用户等级
'is_admin',//is管理员
];
2. 新增一条路由
//前端小程序拿到的地址:https://域名/api/v1/自己写的接口
Route::group(['prefix' => '/v1'], function () {
Route::post('/user/login', 'UserController@weappLogin');
});
3. 在 UserController 控制器里新建 function weappLogin (),别忘了 use 这些
use App\User;
use Carbon\Carbon;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
写两个 function weappLogin (),avatarUpyun ()
public function weappLogin(Request $request)
{
$code = $request->code;
// 根据 code 获取微信 openid 和 session_key
$miniProgram = \EasyWeChat::miniProgram();
$data = $miniProgram->auth->session($code);
if (isset($data['errcode'])) {
return $this->response->errorUnauthorized('code已过期或不正确');
}
$weappOpenid = $data['openid'];
$weixinSessionKey = $data['session_key'];
$nickname = $request->nickname;
$avatar = str_replace('/132', '/0', $request->avatar);//拿到分辨率高点的头像
$country = $request->country?$request->country:'';
$province = $request->province?$request->province:'';
$city = $request->city?$request->city:'';
$gender = $request->gender == '1' ? '1' : '2';//没传过性别的就默认女的吧,体验好些
$language = $request->language?$request->language:'';
//找到 openid 对应的用户
$user = User::where('weapp_openid', $weappOpenid)->first();
//没有,就注册一个用户
if (!$user) {
$user = User::create([
'weapp_openid' => $weappOpenid,
'weapp_session_key' => $weixinSessionKey,
'password' => $weixinSessionKey,
'avatar' => $request->avatar?$this->avatarUpyun($avatar):'',
'weapp_avatar' => $avatar,
'nickname' => $nickname,
'country' => $country,
'province' => $province,
'city' => $city,
'gender' => $gender,
'language' => $language,
]);
}
//如果注册过的,就更新下下面的信息
$attributes['updated_at'] = now();
$attributes['weixin_session_key'] = $weixinSessionKey;
$attributes['weapp_avatar'] = $avatar;
if ($nickname) {
$attributes['nickname'] = $nickname;
}
if ($request->gender) {
$attributes['gender'] = $gender;
}
// 更新用户数据
$user->update($attributes);
// 直接创建token并设置有效期
$createToken = $user->createToken($user->weapp_openid);
$createToken->token->expires_at = Carbon::now()->addDays(30);
$createToken->token->save();
$token = $createToken->accessToken;
return response()->json([
'access_token' => $token,
'token_type' => "Bearer",
'expires_in' => Carbon::now()->addDays(30),
'data' => $user,
], 200);
}
//我保存到又拍云了,版权归腾讯所有。。。头条闹的
private function avatarUpyun($avatar)
{
$avatarfile = file_get_contents($avatar);
$filename = 'avatars/' . uniqid() . '.png';//微信的头像链接我也不知道怎么获取后缀,直接保存成png的了
Storage::disk('upyun')->write($filename, $avatarfile);
$wexinavatar = config('filesystems.disks.upyun.protocol') . '://' . config('filesystems.disks.upyun.domain') . '/' . $filename;
return $wexinavatar;//返回链接地址
}
微信的头像 / 0
小头像默认 / 132
4. 后端上面就写好了,再看下小程序端怎么做的哈,打开小程序的 app.json,添加 "pages/auth/auth",
{
"pages": [
"pages/index/index",
"pages/auth/auth",//做一个登录页面
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
}
}
5. 打开 auth.js
const app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
UserData: [],
isClick: false,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
},
login: function(e) {
let that=this
that.setData({
isClick: true
})
wx.getUserInfo({
lang: "zh_CN",
success: response => {
wx.login({
success: res => {
let data = {
code:res.code,
nickname: response.userInfo.nickName,
avatar: response.userInfo.avatarUrl,
country: response.userInfo.country ? response.userInfo.country : '',
province: response.userInfo.province ? response.userInfo.province : '',
city: response.userInfo.city ? response.userInfo.city : '',
gender: response.userInfo.gender ? response.userInfo.gender : '',
language: response.userInfo.language ? response.userInfo.language : '',
}
console.log(data)
app.globalData.userInfo = data;
wx.request({
url: '你的后端地址',//我用的valet,http://ak.name/api/v1/user/login
method: 'POST',
data: data,
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
success: function (res) {
console.log(res)
if (res.statusCode != '200') {
return false;
}
wx.setStorageSync('access_token', res.data.access_token)
wx.setStorageSync('UserData', res.data.data ? res.data.data : '')
wx.redirectTo({
url: '/pages/index/index',
})
},
fail: function (e) {
wx.showToast({
title: '服务器错误',
duration: 2000
});
that.setData({
isClick: false
})
},
});
}
})
},
fail: function (e) {
that.setData({
isClick: false
})
},
})
}
})
6. 打开 auth.wxml
<view class='padding-xl'>
<button class='cu-btn margin-top bg-green shadow lg block' open-type="getUserInfo" bindgetuserinfo="login" disabled="{{isClick}}" type='success'>
<text wx:if="{{isClick}}" class='cuIcon-loading2 iconfont-spin'></text> 微信登录</button>
</view>
来源:https://learnku.com/weapp/t/28680


猜你喜欢
- 前言sys模块是与python解释器交互的一个接口。sys 模块提供了许多函数和变量来处理 Python 运行时环境的不同部分。处理命令行参
- 关于F.normalize计算理解动机最近多次看到该方法出现,于是准备了解一下,搜了后发现原来是所谓的L2 norm计算简介函数定义torc
- strip_tags定义和用法strip_tags() 函数剥去字符串中的 HTML、XML 以及 PHP 的标签。注释:该函数始终会剥离
- function chinese2unicode(Str) &nbs
- 在服务端程序开发的过程中,cookie经常被用于验证用户登录。golang 的 net/http 包中自带 http cookie的定义,下
- 目录1、如何按照字典的值的大小进行排序2、优雅的一次性判断多个条件3、如何优雅的合并两个字典1、如何按照字典的值的大小进行排序我们知道,字典
- PyHook是一个基于Python的“钩子”库,主要用于监听当前电脑上鼠标和键盘的事件。这个库依赖于另一个Python库PyWin32,如同
- np.random模块常用的一些方法介绍名称作用numpy.random.rand(d0, d1, …, dn)生成一
- tcp.py # -*- coding: cp936 -*-import socketfrom struct import *from ti
- pandas中iloc()函数DataFrame.iloc纯基于整数位置的索引。import pandas as pdmydict = [{
- 百度贴吧的爬虫制作和糗百的爬虫制作原理基本相同,都是通过查看源码扣出关键数据,然后将其存储到本地txt文件。项目内容:用Python写的百度
- (1)、导库import pandas as pdfrom pandas import Series(2)、读取csv文件的两种方式#读取c
- 字典是可变的,并且可以存储任意数量的Python对象,包括其他容器类型另一个容器类型。字典包括键对(称为项目)及其相应的值。Py
- 方法一一般情况下,SQL数据库的收缩并不能很大程度上减小数据库大小,其主要作用是收缩日志大小,应当定期进行此操作以免数据库日志过大1、设置数
- 今天在做类似于qq那样的评论功能时,束手无策,在网上到处找答案,最后在一个很小很小的角落里受到了启发.认识了一个新的东西contentedi
- python中有的df列比较长head的时候会出现省略号,现在数据分析常用的就是基于anaconda的notebook和sypder,在sp
- Inserted 表中的行是触发器表中新行的副本。 语法 返回所有列 INSERT INTO [tableName] ([columnNam
- 前言原子操作这是Java多线程编程的老生常谈了。所谓原子操作是指不会被线程调度机制打断的操作;这种操作一旦开始,就一直运行到结束,中间不会有
- nth-child(),是CSS3中的一个伪类选择符,JQuery选择器继承了CSS的部分语法,允许通过标签名、属性名、内容对DOM元素进行
- 环境Laravel 5.4原理在Laravel中,门面为应用服务容器中绑定的类提供了一个“静态”接口