No project description provided
Project description
Fastapi JWKS Auth(Validator)
Overview
FastAPI JWK Auth is a Python package designed to enhance FastAPI applications with easy and secure JSON Web Token (JWT) validation using JSON Web Key Sets (JWKS). It simplifies the integration of JWT-based authentication in your FastAPI project when JWKS URLs are employed for key retrieval.
Features
- JWKS-Based JWT Validation: Seamlessly validate JWTs using JWKS obtained from configured URLs.
- FastAPI Middleware Integration: Integrate the provided
JWTMiddleware
class into your FastAPI application middleware likeapp.add_middleware(JWTMiddleware)
to secure your routes with JWT validation. - Fastapi Router dependency: Integrate the provided
jwk_validator
function into your FastAPI router likeapp.include_router(auth_app.router, dependencies=[Depends(jwk_validator)])
to secure your product with JWT validation - Efficient JWK Handling: Retrieve and utilize JSON Web Key Sets efficiently in your FastAPI routes with the
fetch_jwks
function. - Exception Handling: Easily manage JWT validation exceptions using FastAPI's HTTPException.
Installation
Install the package using pip:
pip install fastapi-jwk-auth
Usage
FastAPI Middleware Integration
from fastapi import FastAPI, Depends
from fastapi_jwk_auth import JWTMiddleware
app = FastAPI()
# Include the JWT Middleware
app.add_middleware(JWTMiddleware)
FastAPI Route JWT Validation
from fastapi import FastAPI, Depends
app=FastAPI()
app.include_router(auth_app.router, dependencies=[Depends(jwk_validator)])
Configuration
Set the following environment variable to the JSON Web Key Set (JWKS) URI:
JWK_HOST="https://your-identity-server"
Contributing
Feel free to open PR/Issues.
License
This project is licensed under the MIT License.
Contact
For questions or feedback, feel free to contact us at [omkardarves@gmail.com].
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fastapi-jwk-auth-0.0.1b0.tar.gz
.
File metadata
- Download URL: fastapi-jwk-auth-0.0.1b0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ce344547c94b4775cd72cc24af86ac6f7efdd38c73aaab6d19d4a3669dac60c |
|
MD5 | 3941560eef03e2563d8f4b6eaf84478c |
|
BLAKE2b-256 | 3ea6d05f8884f3bdc3a7df48b3941bf9fb9fa26b7c761a2eb1adacce5650e6a2 |
File details
Details for the file fastapi_jwk_auth-0.0.1b0-py3-none-any.whl
.
File metadata
- Download URL: fastapi_jwk_auth-0.0.1b0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be4a895e0ae5bf08a21657b571423c136b9b202642c343a760baf048659a624d |
|
MD5 | f2566a1c78d59ae39218a9e1c8a02238 |
|
BLAKE2b-256 | b01097ea906b6a438382607d8b7c3ab6b596bce68b4f56913280c54dd7aebcbb |