Laravel 版本:
Laravel Framework 6.18.3
查看版本命令:
php artisan -V
1、安装JWT扩展包:
composer require tymon/jwt-auth:dev-develop --prefer-source
2、发布配置文件:
php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\LaravelServiceProvider"
3、生成JWT密钥:
php artisan jwt:secret
4、在 app/Http/Kernel.php 中注册 auth.jwt 中间件:
protected $routeMiddleware = [ .... ‘auth.jwt‘ => \Tymon\JWTAuth\Http\Middleware\Authenticate::class, ];
5、设置路由:
Route::post(‘login‘, ‘[email protected]‘); Route::post(‘register‘, ‘[email protected]‘); Route::group([‘middleware‘ => ‘auth.jwt‘], function () { Route::get(‘logout‘, ‘[email protected]‘); Route::get(‘user‘, ‘[email protected]‘); });
6、更新User模型:
JWT 需要在 User 模型中实现 Tymon\JWTAuth\Contracts\JWTSubject 接口。 此接口需要实现两个方法 getJWTIdentifier 和 getJWTCustomClaims。使用以下内容更新 app/User.php 。
<?php namespace App; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Tymon\JWTAuth\Contracts\JWTSubject; class User extends Authenticatable implements JWTSubject { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ ‘name‘, ‘email‘, ‘password‘, ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ ‘password‘, ‘remember_token‘, ]; /** * Get the identifier that will be stored in the subject claim of the JWT. * * @return mixed */ public function getJWTIdentifier() { return $this->getKey(); } /** * Return a key value array, containing any custom claims to be added to the JWT. * * @return array */ public function getJWTCustomClaims() { return []; } }
7、修改config/auth.php文件:
‘guards‘ => [ .... ‘admin‘ => [ ‘driver‘ => ‘jwt‘, ‘provider‘ => ‘admins‘, ], ]
‘providers‘ => [ .... ‘admins‘ => [ ‘driver‘ => ‘eloquent‘, ‘model‘ => App\User::class, ], ]
8、控制器示例:
<?php namespace App\Http\Controllers; use App\User; use Illuminate\Http\Request; use Tymon\JWTAuth\JWTAuth; use Tymon\JWTAuth\Exceptions\JWTException; class ApiController extends Controller { public $loginAfterSignUp = true; public function register(Request $request) { $user = new User(); $user->name = $request->name; $user->email = $request->email; $user->password = bcrypt($request->password); $user->save(); if ($this->loginAfterSignUp) { return $this->login($request); } return response()->json([ ‘success‘ => true, ‘data‘ => $user ], 200); } public function login(Request $request) { $input = $request->only(‘email‘, ‘password‘); $jwt_token = null; $guard = auth(‘admin‘); if (!$jwt_token = $guard->attempt($input)) { return response()->json([ ‘success‘ => false, ‘message‘ => ‘Invalid Email or Password‘, ], 401); } return response()->json([ ‘success‘ => true, ‘token‘ => $jwt_token, ]); } public function logout(Request $request) { $this->validate($request, [ ‘token‘ => ‘required‘ ]); try { $guard = auth(‘admin‘); $guard->invalidate($request->token); return response()->json([ ‘success‘ => true, ‘message‘ => ‘User logged out successfully‘ ]); } catch (JWTException $exception) { return response()->json([ ‘success‘ => false, ‘message‘ => ‘Sorry, the user cannot be logged out‘ ], 500); } } public function getAuthUser(Request $request) { $this->validate($request, [ ‘token‘ => ‘required‘ ]); $user = JWTAuth::authenticate($request->token); return response()->json([‘user‘ => $user]); } }
Enjoy it !
....
原文地址:https://www.cnblogs.com/daizhongxing/p/12627045.html
时间: 2024-10-08 02:22:27