ariadne-jwt icon indicating copy to clipboard operation
ariadne-jwt copied to clipboard

JSON Web Token (JWT) authentication for Ariadne Django

Results 6 ariadne-jwt issues
Sort by recently updated
recently updated
newest added

getting this error after making one request using the token. so I keep refreshing the token one every request.

Hi `Usama0121/ariadne-jwt`! This is a one-off automatically generated pull request from LGTM.com :robot:. You might have heard that we’ve integrated LGTM’s underlying CodeQL analysis engine natively into GitHub. The result...

Running ariadne-jwt 0.1.7 with Django 4.0 throws the following exception: ``` [...] File "[...]/python3.10/site-packages/ariadne_jwt/refresh_token/models.py", line 10, in from . import managers, signals File "[...]/python3.10/site-packages/ariadne_jwt/refresh_token/signals.py", line 3, in refresh_token_revoked = Signal(providing_args=['refresh_token'])...

Hi! It's possible create a token and refresh it without save it in the database? Any idea or implementation? Thanks!

If I use the `authToken` mutation as explained in the README. `jwt_schema` defines : ```gql type TokenAuth { token: String refresh_token: String payload: GenericScalar } ``` If I login, I...

Hi, First of all thanks for your package! I can get the JTW token authorisation working with normal queries. However when decorate the resolver method of a subscription with `login_required`...