JWTRefreshTokenBundle
JWTRefreshTokenBundle copied to clipboard
Implements a Refresh Token system over Json Web Tokens in Symfony
Hi, do you plan on updating the bundle for making it work with symfony 6 php8.1 ? do you know when?
Regarding #255 and the need to specify the `provider` key if used within an app with more than one user provider, here is a minimal update to the readme with...
Hi, I'm trying to use the http-only cookie support in this bundle. I've set up the following for bundle configuration: ```yaml gesdinet_jwt_refresh_token: user_identity_field: email user_provider: security.user.provider.concrete.app_user_provider # Time to live...
Unrecognized options "pattern, stateless, refresh_jwt" under "security.providers.api_token_refresh"
I had this error when a tried to run de migration command: Unrecognized options "pattern, stateless, refresh_jwt" under "security.providers.api_token_refresh". Available options are "chain", "entity", "id", "ldap", "lexik_jwt", "memory" require composer...
You could add the option to auto-renew the duration of the validity time of the refresh token. Reviewing the code, you could put together something like the following: In EventListener/AttachRefreshTokenOnSuccessListener.php...
It appear that the problem is already reported but closed here [https://github.com/markitosgv/JWTRefreshTokenBundle/issues/147](url). But my question is less specific. In fact I would like to split this solution in 3 cases:...
Lexik_jwt config allow use cookie as token extractor: # check token in a cookie cookie: enabled: true name: BEARER So, is it possible to config refresh token to a cookie?...
Will this package be updated to support PHP 8? For example the `doctrine/persistence` package needs to be updated: ea: replace `Doctrine/Common/Persistence` namespace with `Doctrine/Persistence` in `RefreshTokenManager`.
Hi everyone. I am using api-platform with lexik jwt for tokens. I know that this bundle will generate a refresh token when using login_check. But how to use it with...
Hey, I've injected to one of my controllers RefreshTokenManager, I'm trying to create new refreshtoken with: ```php $refreshToken = $this->refreshTokenManager->create(); ``` but I'm getting empty object instead fulfilled one. What...