Proyect forked from IndominusByte's fastapi-jwt-auth. Since it seems to be no longer maintained (last commit was on Nov 11, 2020) I decide to fork the repo and add support for pydantic==2.X
. If this isn't the appropiate way to fix the dependencies problem, please contact me so I can do it in the proper way. Thanks!
Documentation: https://alejorodriguez96.github.io/fastapi-jwt-auth
Source Code: https://github.com/alejorodriguez96/fastapi-jwt-auth
FastAPI extension that provides JWT Auth support (secure, easy to use and lightweight), if you were familiar with flask-jwt-extended this extension suitable for you, cause this extension inspired by flask-jwt-extended 😀
- Access tokens and refresh tokens
- Freshness Tokens
- Revoking Tokens
- Support for WebSocket authorization
- Support for adding custom claims to JSON Web Tokens
- Storing tokens in cookies and CSRF protection
The easiest way to start working with this extension with pip
pip install fastapi-jwt-auth
If you want to use asymmetric (public/private) key signing algorithms, include the asymmetric extra requirements.
pip install 'fastapi-jwt-auth[asymmetric]'
This project is licensed under the terms of the MIT license.