A library designed to facilitate the integration of JSON Web Key Set (JWKS) with FastAPI applications
Project description
fastapi-jwks
fastapi-jwks is a Python library designed to facilitate the integration of JSON Web Key Set (JWKS) with FastAPI applications. It provides a set of tools to automatically query the JWKS endpoint and verify the tokens sent over a request.
Key Features
- JWKS Endpoint Querying: The library automatically queries the JWKS endpoint to fetch the necessary keys for token verification.
- Token Verification: It verifies the tokens sent over a request with the JWKS endpoint, ensuring the authenticity and integrity of the data.
- Middleware Integration: The library includes a middleware that can be easily integrated into your FastAPI application to handle token validation on every request.
- Pydantic Model Support: It supports Pydantic models for token data extraction, providing a seamless way to work with the token data.
- Customizable State Fields: You can customize where the payload and raw token are stored in the request state.
- Raw Token Access: Access both the decoded payload and the original raw token through dependency injection.
Installation
pip install fastapi_jwks
Basic Usage
from fastapi import FastAPI
from fastapi import Depends
from pydantic import BaseModel
from fastapi_jwks.injector import JWTTokenInjector
from fastapi_jwks.middlewares.jwk_auth import JWKSAuthMiddleware
from fastapi_jwks.models.types import JWKSConfig, JWTDecodeConfig
from fastapi_jwks.validators import JWKSValidator
# The data we want to extract from the token
class FakeToken(BaseModel):
user: str
app = FastAPI()
# Basic usage with default configuration
payload_injector = JWTTokenInjector[FakeToken]()
@app.get("/my-endpoint", response_model=FakeToken)
def my_endpoint(fake_token: FakeToken = Depends(payload_injector)):
return fake_token
jwks_verifier = JWKSValidator[FakeToken](
decode_config=JWTDecodeConfig(),
jwks_config=JWKSConfig(url="http://my-fake-jwks-url/my-fake-endpoint"),
)
app.add_middleware(JWKSAuthMiddleware, jwks_validator=jwks_verifier)
Advanced Usage
Custom State Fields
You can customize where the payload and raw token are stored in the request state:
from fastapi_jwks.models.types import JWKSMiddlewareConfig, JWTTokenInjectorConfig
from fastapi_jwks.injector import JWTTokenInjector, JWTRawTokenInjector
# Configure middleware with custom field names
middleware_config = JWKSMiddlewareConfig(
payload_field="custom_payload",
token_field="custom_token"
)
app.add_middleware(
JWKSAuthMiddleware,
jwks_validator=jwks_verifier,
config=middleware_config
)
# Configure injectors to use the custom fields
payload_injector = JWTTokenInjector[FakeToken](
config=JWTTokenInjectorConfig(payload_field="custom_payload")
)
token_injector = JWTRawTokenInjector[str](
config=JWTTokenInjectorConfig(token_field="custom_token")
)
@app.get("/advanced-endpoint")
def advanced_endpoint(
payload: FakeToken = Depends(payload_injector),
raw_token: str = Depends(token_injector)
):
return {
"user": payload.user,
"token": raw_token
}
Additional Configuration
The middleware also supports:
- Custom authorization header name (
auth_header) - Custom authorization scheme (
auth_scheme) - Path exclusion (
exclude_paths)
app.add_middleware(
JWKSAuthMiddleware,
jwks_validator=jwks_verifier,
auth_header="X-Custom-Auth",
auth_scheme="Token",
exclude_paths=["/public", "/health"]
)
Contributing
We are happy if you want to contribute to this project. If you find any bugs or have suggestions for improvements, please open an issue. We are also happy to accept your PRs. Just open an issue beforehand and let us know what you want to do and why.
License
fastapi-jwks is licensed under the MIT License.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_jwks-1.0.0.tar.gz.
File metadata
- Download URL: fastapi_jwks-1.0.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.8.0-1031-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b539ea7bc84c93c902bc143f341621da7616307f568c4052980bfde5184b176
|
|
| MD5 |
c87eea21ce4bde07f0815c590e702986
|
|
| BLAKE2b-256 |
409615cec67cae2f0a0a7271fc3ae1efa4d01b305cbe51167279182b33e911b7
|
File details
Details for the file fastapi_jwks-1.0.0-py3-none-any.whl.
File metadata
- Download URL: fastapi_jwks-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.8.0-1031-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae2ee0764dfec965201e1542977ccce01821472d70a857f2b0e32fbeeba756eb
|
|
| MD5 |
3593372c0b1c7fd6f122e26d3d0fc3ca
|
|
| BLAKE2b-256 |
73912f809d8b15f736944604dedaff44f5b2665423347a67447c391e97b3f11c
|