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

Installed v1.0.1 My configuration: ``` # config/packages/gesdinet_jwt_refresh_token.yaml gesdinet_jwt_refresh_token: ttl: '%jwt.refresh_token_ttl%' token_parameter_name: refreshToken ``` Giving this message: `Since gesdinet/jwt-refresh-token-bundle 1.0: The "Gesdinet\JWTRefreshTokenBundle\Entity\AbstractRefreshToken" class is deprecated, use "Gesdinet\JWTRefreshTokenBundle\Model\AbstractRefreshToken" instead.` Trying manually configure...

gesdinet_jwt_refresh_token.yaml Code is - gesdinet_jwt_refresh_token: refresh_token_class: App\Entity\JwtRefreshToken Entity file code is - JwtRefreshToken.php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; use Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken; /** * This class extends Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken to have another...

I implemented a new entity (App\Entity\RefreshToken extends your AbstractRefreshToken), but still getting default refresh_tokens table. How to disable table auto-generation `refresh_tokens`??? `config/packages/gesdinet_jwt_refresh_token.yaml` ``` gesdinet_jwt_refresh_token: token_parameter_name: refresh_token refresh_token_class: App\Entity\RefreshToken doctrine_mappings: false...

Hi, is it possible to store a device name with a given token - for example using an extra event listener on token creation that can fetch the device name...

Symfony 6.0.6 I use Api platform. When i try `/api/token/refresh` with the `accept: application/json` header, its doent works. But its works without the header. --- Request : ```php curl -X...

{ "type": "project", "license": "proprietary", "minimum-stability": "stable", "prefer-stable": true, "require": { "php": ">=7.4.5", "ext-ctype": "*", "ext-iconv": "*", "composer/package-versions-deprecated": "1.11.99.2", "doctrine/annotations": "^1.0", "doctrine/doctrine-bundle": "^2.6", "doctrine/doctrine-migrations-bundle": "^3.1", "doctrine/orm": "^2.11", "gesdinet/jwt-refresh-token-bundle": "^1.0", "lexik/jwt-authentication-bundle":...

I use unix_time format for handle my objects of DateTime and i get this error when try to update token. ![image](https://user-images.githubusercontent.com/10134910/110700973-947e3300-81be-11eb-9e30-40a6834c4280.png) ![image](https://user-images.githubusercontent.com/10134910/110701020-a4961280-81be-11eb-8daa-f52c746738d8.png) ![image](https://user-images.githubusercontent.com/10134910/110699031-6ac40c80-81bc-11eb-97e5-14c3ac6f97fa.png)

Is it possible to programatically generate a refresh token? Similar to https://github.com/lexik/LexikJWTAuthenticationBundle/blob/2.x/Resources/doc/7-manual-token-creation.md I want to handle the login / refresh option in GraphQL, so I want to generate the two...

Hi! In a few time we are going to release a v1.0 stable version, now we are testing v1.0.0-beta2 . Could you please give me some feedback to try to...

help wanted