fastapi-jwt-auth icon indicating copy to clipboard operation
fastapi-jwt-auth copied to clipboard

FastAPI extension that provides JWT Auth support (secure, easy to use, and lightweight)

Results 65 fastapi-jwt-auth issues
Sort by recently updated
recently updated
newest added

Hi @IndominusByte , thank you for the great work on this plugin, and for it's documentation. Can you indicate which is the status of this project? It seems stale with...

Started using the fastapi-jwt-auth. Validating the token from header. Raw token doesnt have "type" key so its failed with KeyError. Just want to understand the below condition. if raw_token['type'] in...

A grammatical error was observed in the docs. It said "Which keeps javascript cannot be able to access the cookies." I think want was meant was "Which means javascript cannot...

issued_at (iat) in tokens are not in utc, but in system timezone... Is it intended to be this way? Is there a prossibility to modify this behavior without changing the...

When testing my register and login functions from my front end application, I found that the CSRF cookie was not appearing. I was able to confirm that my backend api...

Hi, you did a super cool library, but I couldn't use it in our ecosystem. These options are here to help this library to be more generic. In many cases...

By using this library, I donot see Authorize option in Swagger UI and have to use POSTMAN to test the app. It will be better if Authorize option is shown...

enhancement

#45 This PR is wrong (please decline it), but would like to raise the issue however :) https://www.iana.org/assignments/jwt/jwt.xhtml#claims "type" is not a reserved claim, in fact I found it hard...

Hello . I am trying to implement a route for logging out a user . When a user logs out I want to revoke their access token and their refresh...

I think that I missed something but I was not able to get the denylist working with aioredis (async lib). Here is my code : ``` @AuthJWT.token_in_denylist_loader async def check_token_denylist(decrypted_token):...