在使用JWT(JSON Web Tokens)和Postman进行Laravel 8的授权时,你需要遵循以下步骤:
首先,你需要在Laravel项目中安装和配置JWT。你可以使用tymon/jwt-auth
包来实现这一点。
composer require tymon/jwt-auth
php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\LaravelServiceProvider"
php artisan jwt:secret
config/auth.php
在 config/auth.php
文件中,配置JWT作为认证驱动:
'guards' => [
'api' => [
'driver' => 'jwt',
'provider' => 'users',
'hash' => false,
],
],
确保你的User模型实现了 Tymon\JWTAuth\Contracts\JWTSubject
接口,并添加必要的方法:
use Tymon\JWTAuth\Contracts\JWTSubject;
class User extends Authenticatable implements JWTSubject
{
// ...
public function getJWTIdentifier()
{
return $this->getKey();
}
public function getJWTCustomClaims()
{
return [];
}
}
php artisan make:controller AuthController
在 AuthController
中添加登录方法:
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Tymon\JWTAuth\Facades\JWTAuth;
class AuthController extends Controller
{
public function login(Request $request)
{
$credentials = $request->only('email', 'password');
if (!$token = Auth::attempt($credentials)) {
return response()->json(['error' => 'Unauthorized'], 401);
}
return $this->respondWithToken($token);
}
protected function respondWithToken($token)
{
return response()->json([
'access_token' => $token,
'token_type' => 'bearer',
'expires_in' => Auth::factory()->getTTL() * 60
]);
}
}
在 routes/api.php
中添加认证路由:
use App\Http\Controllers\AuthController;
Route::post('login', [AuthController::class, 'login']);
http://your-app-url/api/login
。x-www-form-urlencoded
并添加以下字段:email
: 用户的电子邮件地址password
: 用户的密码access_token
。http://your-app-url/api/protected-route
)。Authorization
头,并设置值为 Bearer <access_token>
,其中 <access_token>
是你在上一步中获取的令牌。通过以上步骤,你应该能够在Laravel 8中使用JWT和Postman进行授权。确保你的应用程序的安全性,不要在客户端暴露密钥,并使用HTTPS来保护传输中的数据。
领取专属 10元无门槛券
手把手带您无忧上云