You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?phpdeclare(strict_types=1);
/** * This file is part of hyperf-ext/jwt * * @link https://github.com/hyperf-ext/jwt * @contact [email protected] * @license https://github.com/hyperf-ext/jwt/blob/master/LICENSE */return [
/* |-------------------------------------------------------------------------- | JWT Authentication Secret |-------------------------------------------------------------------------- | | Don't forget to set this in your .env file, as it will be used to sign | your tokens. A helper command is provided for this: | `php bin/hyperf.php gen:jwt-secret` | | Note: This will be used for Symmetric algorithms only (HMAC), | since RSA and ECDSA use a private/public key pair (See below). | | Note: This value must be encoded by base64. | */'secret' => env('JWT_SECRET'),
/* |-------------------------------------------------------------------------- | JWT Authentication Keys |-------------------------------------------------------------------------- | | The algorithm you are using, will determine whether your tokens are | signed with a random string (defined in `JWT_SECRET`) or using the | following public and private keys. A helper command is provided for this: | `php bin/hyperf.php gen:jwt-keypair` | | Symmetric Algorithms: | HS256, HS384 & HS512 will use `JWT_SECRET`. | | Asymmetric Algorithms: | RS256, RS384 & RS512 / ES256, ES384 & ES512 will use the keys below. | */'keys' => [
/* |-------------------------------------------------------------------------- | Public Key |-------------------------------------------------------------------------- | | Your public key content. | */'public' => env('JWT_PUBLIC_KEY'),
/* |-------------------------------------------------------------------------- | Private Key |-------------------------------------------------------------------------- | | Your private key content. | */'private' => env('JWT_PRIVATE_KEY'),
/* |-------------------------------------------------------------------------- | Passphrase |-------------------------------------------------------------------------- | | The passphrase for your private key. Can be null if none set. | | Note: This value must be encoded by base64. | */'passphrase' => env('JWT_PASSPHRASE'),
],
/* |-------------------------------------------------------------------------- | JWT time to live |-------------------------------------------------------------------------- | | Specify the length of time (in seconds) that the token will be valid for. | Defaults to 1 hour. | | You can also set this to null, to yield a never expiring token. | Some people may want this behaviour for e.g. a mobile app. | This is not particularly recommended, so make sure you have appropriate | systems in place to revoke the token if necessary. | Notice: If you set this to null you should remove 'exp' element from 'required_claims' list. | */'ttl' => env('JWT_TTL', 1000000),
/* |-------------------------------------------------------------------------- | Refresh time to live |-------------------------------------------------------------------------- | | Specify the length of time (in seconds) that the token can be refreshed | within. I.E. The user can refresh their token within a 2 week window of | the original token being created until they must re-authenticate. | Defaults to 2 weeks. | | You can also set this to null, to yield an infinite refresh time. | Some may want this instead of never expiring tokens for e.g. a mobile app. | This is not particularly recommended, so make sure you have appropriate | systems in place to revoke the token if necessary. | */'refresh_ttl' => env('JWT_REFRESH_TTL', 3600 * 24 * 14),
/* |-------------------------------------------------------------------------- | JWT hashing algorithm |-------------------------------------------------------------------------- | | Specify the hashing algorithm that will be used to sign the token. | | possible values: HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384, ES512 | */'algo' => env('JWT_ALGO', 'HS512'),
/* |-------------------------------------------------------------------------- | Required Claims |-------------------------------------------------------------------------- | | Specify the required claims that must exist in any token. | A TokenInvalidException will be thrown if any of these claims are not | present in the payload. | */'required_claims' => [
'iss',
'iat',
// 'exp','nbf',
'sub',
'jti',
],
/* |-------------------------------------------------------------------------- | Persistent Claims |-------------------------------------------------------------------------- | | Specify the claim keys to be persisted when refreshing a token. | `sub` and `iat` will automatically be persisted, in | addition to the these claims. | | Note: If a claim does not exist then it will be ignored. | */'persistent_claims' => [
// 'foo',// 'bar',
],
/* |-------------------------------------------------------------------------- | Lock Subject |-------------------------------------------------------------------------- | | This will determine whether a `prv` claim is automatically added to | the token. The purpose of this is to ensure that if you have multiple | authentication models e.g. `App\User` & `App\OtherPerson`, then we | should prevent one authentication request from impersonating another, | if 2 tokens happen to have the same id across the 2 different models. | | Under specific circumstances, you may want to disable this behaviour | e.g. if you only have one authentication model, then you would save | a little on token size. | */'lock_subject' => true,
/* |-------------------------------------------------------------------------- | Leeway |-------------------------------------------------------------------------- | | This property gives the jwt timestamp claims some "leeway". | Meaning that if you have any unavoidable slight clock skew on | any of your servers then this will afford you some level of cushioning. | | This applies to the claims `iat`, `nbf` and `exp`. | | Specify in seconds - only if you know you need it. | */'leeway' => env('JWT_LEEWAY', 0),
/* |-------------------------------------------------------------------------- | Blacklist Enabled |-------------------------------------------------------------------------- | | In order to invalidate tokens, you must have the blacklist enabled. | If you do not want or need this functionality, then set this to false. | */'blacklist_enabled' => env('JWT_BLACKLIST_ENABLED', true),
/* | ------------------------------------------------------------------------- | Blacklist Grace Period | ------------------------------------------------------------------------- | | When multiple concurrent requests are made with the same JWT, | it is possible that some of them fail, due to token regeneration | on every request. | | Set grace period in seconds to prevent parallel request failure. | */'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0),
/* |-------------------------------------------------------------------------- | Blacklist Storage |-------------------------------------------------------------------------- | | Specify the handler that is used to store tokens in the blacklist. | */'blacklist_storage' => HyperfExt\Jwt\Storage\HyperfCache::class,
];
问题:
$this->auth->guard('api')->checkOrFail();
不能拦截,并且后续打印当前用户为空流程:
出错token
运行结果
结果非常致命, 现在我的临时解决
问题发现
这个token应该是前n天生成的,今天偶然测试,发现
checkOrFail
不能拦截了其他
我在 链接 中补充了常用使用方式,然后
$this->auth->guard('api')->checkOrFail();
是大佬帮我补充的我的.env
The text was updated successfully, but these errors were encountered: