Skip to content

Commit c328594

Browse files
committed
feat: 支持在某个时间点后才能访问配置项 nbf
1 parent 5c8515e commit c328594

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/JwtToken.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -283,10 +283,12 @@ private static function makeToken(array $payload, string $secretKey, string $alg
283283
private static function generatePayload(array $config, array $extend): array
284284
{
285285
$basePayload = [
286-
'iss' => $config['iss'],
287-
'iat' => time(),
288-
'exp' => time() + $config['access_exp'],
289-
'extend' => $extend
286+
'iss' => $config['iss'], // 签发者
287+
'aud' => $config['iss'], // 接收该JWT的一方
288+
'iat' => time(), // 签发时间
289+
'nbf' => time() + $config['nbf'] ?? 0, // 某个时间点后才能访问
290+
'exp' => time() + $config['access_exp'], // 过期时间
291+
'extend' => $extend // 自定义扩展信息
290292
];
291293
$resPayLoad['accessPayload'] = $basePayload;
292294
$basePayload['exp'] = time() + $config['refresh_exp'];

src/config/plugin/tinywan/jwt/app.php

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
'refresh_disable' => false,
1818
// 令牌签发者
1919
'iss' => 'webman.tinywan.cn',
20+
// 某个时间点后才能访问,单位秒。(如:30 表示当前时间30秒后才能使用)
21+
'nbf' => 60,
2022
// 时钟偏差冗余时间,单位秒。建议这个余地应该不大于几分钟。
2123
'leeway' => 60,
2224
// 单设备登录

0 commit comments

Comments
 (0)