JWTRefreshTokenBundle icon indicating copy to clipboard operation
JWTRefreshTokenBundle copied to clipboard

Implements a Refresh Token system over Json Web Tokens in Symfony

Results 86 JWTRefreshTokenBundle issues
Sort by recently updated
recently updated
newest added

In symfony 6 refresh token not working properly because it unable to find the controller. Do you have any solution for this case ? security.yaml -> firewalls: ``` # ......

Hello, According to your documentation, the JWT must still be valid in order to be renewed (with a valid refresh token ofc): > Ask to renew **valid JWT** with our...

hello everyone. i want to change the column of username in table refresh_tokens with email. i code like below it's not work ``` gesdinet_jwt_refresh_token: user_identity_field: email ``` and do you...

Hello, I'm trying to use the package with Symfony 6.1, PHP 8.1. As first thing I installed and tested Lexik JWT Bundle and created User entity with make:user command. Everything...

Hi, With https://github.com/markitosgv/JWTRefreshTokenBundle#configure-the-authenticator and so: ``` api: pattern: ^/api stateless: true entry_point: jwt json_login: check_path: /api/login # or, if you have defined a route for your login path, the route...

Hi everyone, I just installed Gesdinet JWT refresh token, but can't make it works. I'm facing this error : `Class "App\Entity\RefreshToken" sub class of "Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken" is not a valid entity...

It seems like while this option was added as an option, its handling wasn't, so it doesn't do anything at the moment, am I right?

Hello guys !, I encountered a lot of problems when installing version 1.1 under SF6 and apiplatform. I allow myself to make a thread to explain the process for the...

Hi everyone, I try to configure the bundle with SF6 AND php8.1 routes.yaml ``` gesdinet_jwt_refresh_token: path: /auth-token/refresh controller: gesdinet.jwtrefreshtoken::refresh ``` security.yaml ``` login: pattern: ^/auth-token user_checker: App\Security\UserChecker stateless: true json_login:...

Hello maintainers, Instead of using `time() + $this->ttl` my suggestion is to use the `getValid()` method of the token. If you request a new token through `/api/token/refresh`, you get the...