Laravel + jwt 令牌

发布于 2025-01-10 22:32:15 字数 196 浏览 0 评论 0原文

是否可以?

  1. jwt 为每个请求生成 20 分钟的过期时间,
  2. 中间件检查 jwt 过期时间,如果它低于 2 分钟,它会在响应中添加新令牌 - 当前端收到带有新令牌的响应时,旧令牌当然在接下来的 2 分钟内仍然有效,
  3. 它会启动在下一个请求中使用它(如果有一些正在进行的请求,同时它们使用仍然有效的旧令牌)

Is it possible?

  1. jwt is generated with 20mins expiration time
  2. for each request middleware checks jwt expiration time and if its lower than lets say 2 min it adds new token in response - old token of course is still valid for next 2mins
  3. when frontend received response with new token it starts using it in next requests (if there was some ongoing requests meantime they use old token which is still valid)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耶耶耶 2025-01-17 22:32:15

使用此 jwt 包: https://github.com/tymondesigns/jwt-auth

并在在 AuthController 中,

您可以像这样修改 expires_in 属性:

  protected function respondWithToken($token):JsonResponse
{
    return response()->json([
        'message'=>'Successful',
        'access_token' => $token,
        'token_type' => 'bearer',
        'expires_in' => auth()->factory()->getTTL() * 60,
        'name' => auth()->user()->name,
        'user_id' => auth()->user()->id,
        'email' => auth()->user()->email,
    ],'200');
}

Use this jwt package: https://github.com/tymondesigns/jwt-auth

And In The AuthController ,

You can modifiy the expires_in property just like this:

  protected function respondWithToken($token):JsonResponse
{
    return response()->json([
        'message'=>'Successful',
        'access_token' => $token,
        'token_type' => 'bearer',
        'expires_in' => auth()->factory()->getTTL() * 60,
        'name' => auth()->user()->name,
        'user_id' => auth()->user()->id,
        'email' => auth()->user()->email,
    ],'200');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文