fastapi-jwt-auth
fastapi-jwt-auth copied to clipboard
FastAPI extension that provides JWT Auth support (secure, easy to use, and lightweight)
Hi, At the moment, there is the base error class ```py class AuthJWTException(Exception): """ Base except which all fastapi_jwt_auth errors extend """ pass ``` and then all the others inherit...
I have an OAuth2 password flow authorization endpoint which is used to create a token. However if I inject AuthJWT as a dependency, the request will fail as there is...
Please approve it since I can't use latest PyJWT packages and cryptography in my FastAPI - based project.
The values allowed are 'strict', 'lax' or 'none'. With case-sensitive checks. Chrome accepts values with capitalized words, example: Strict, Lax, None. We either need to check it by converting values...
I am using JWT tokens in http only **cookies** along with csrf tokens. I want to extend my solution for the mobile platform, Is it possible. Can you add any...
Please make a dark mode the documentation please
I am not finding any way for accessing authorization header through fastapi_jwt_auth library, like we have the Swagger UI Authorization available for OAuth2PasswordBearer in which we can give tokenUrl and...
I'm using asyncio_redis for the revocation list of tokens and it would be nice if the library supported coroutines (async def functions) for the AuthJWT.token_in_denylist_loader callback.
I love this library, It would be great if the library support scopes, it already supports "additional claims" where scopes can be added to the token, it would be great...