A robust bearer token authentication and authorization middleware for FastAPI applications.
Project description
FastAPI Bearer Authorization
A robust bearer token authentication and authorization middleware for FastAPI applications.
[!WARNING]
This project is in early development and may not be suitable for production use.
Features
- Easy-to-use bearer token authentication
- Fine-grained permission-based authorization using unique operation IDs
- HTTP Verb based authorization, using the
HTTP_VERB:<VERB_NAME>format - Configurable via environment variables or direct configuration
- Secure token generation and validation
Installation
uv add fastapi-bearer-authzn
Quick Start
from fastapi import FastAPI, Depends
from fastapi_bearer_authzn import BearerAuthDependency
# Initialize the auth dependency, with the config coming from an environment variable
auth = BearerAuthDependency(from_env=True)
app = FastAPI()
@app.get("/protected")
def protected_route(user_id: str = Depends(auth)):
return {"message": "Access granted", "user_id": user_id}
Configuration
Generate a configuration file using the included CLI:
# Run the bootstrap command for environment configuration
uvx fastapi-bearer-authzn bootstrap_config -o env -n 1
FASTAPI_BEARER_AUTHZN_CONFIG='{"224848fe-45df-4173-bc8c-535442611311":{"hashed_token":"ec274bd79a868d17884897455fbbb29c65f3ca076a58c3de8b2121f407a5184518013c7b38cebbffe00c4aabfa03d3dbbbc5df1ddbd206aa94936930c14e3706","user_identifier":"user_a3e7a662-764d-4afe-b84d-98bc10efccbe@example.com","permissions":["*"]}}'
Generated tokens:
224848fe-45df-4173-bc8c-535442611311: fastapi_bearer_authzn_224848fe-45df-4173-bc8c-535442611311_JZy73nSZdvtLYIO1C0o1Rv3dyemqpEeG0eGE_AIqwxs
Usage
- Initialize the
BearerAuthDependencywith your configuration. - Use the dependency in your FastAPI route decorators.
- The middleware will handle authentication and authorization based on the operation IDs and HTTP verbs.
Operation ID-based and HTTP Verb-based Authorization
This module uses FastAPI's operation IDs and HTTP verbs for fine-grained authorization. By default, FastAPI generates an operation ID for each route, which can be inspected in the OpenAPI JSON schema. You can also override these with custom operation IDs.
Given this FastAPI app:
@app.get("/resource1")
def get_resource_1(user_id: str = Depends(auth)):
# Uses FastAPI's default operation ID, obtain it from the OpenAPI JSON schema, and use it in the config
return {"message": "Access to resource 1 granted"}
@app.post("/resource2", operation_id="create_resource_2")
def create_resource_2(user_id: str = Depends(auth)):
# Even better: Use a custom operation ID, then simply reference "create_resource_2" in the config to grant access to this route
return {"message": "Resource 2 created"}
An exemplary config may look as follows:
{
"e2403b7b-822b-4a0c-8586-85adb672169c": {
"hashed_token": "e725c175f719caae1dcc0f0421663402c90f551790f869fcef786fb217a8084e20dfbef7ac47309926919a659da9db4f0cb1062dec578bc907bc18991bbb390f",
"user_identifier": "Used by microservice X", # arbitrary string, for you to identify the user/service
"permissions": [
"HTTP_VERB:GET",
"create_resource_2"
]
}
}
This config grants access to all paths via GET and only to the create_resource_2 path via POST.
Testing
Run the tests using pytest:
# Test latest supported Python version
uv run pytest tests -vv
# Test all supported Python versions
for py in 3.8 3.9 3.10 3.11 3.12 3.13; do
uv run --python $py pytest tests -vv
done
License
This project is licensed under the MIT License.
Publish to PyPI
For the time being, you can publish the package to pypi manually.
uv build
uvx twine check dist/* # ensure that the distribution’s long description will render correctly on PyPI
uvx twine upload dist/* --skip-existing # or `uvx twine upload --repository testpypi dist/* --skip-existing` for testpypi
You will be prompted for a PyPI API token.
Project details
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_bearer_authzn-0.3.1.tar.gz.
File metadata
- Download URL: fastapi_bearer_authzn-0.3.1.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a83acd6c246853d92568d42abbb943f402326ae734526e26133a0b18ea3d67d
|
|
| MD5 |
04519518c3d9645916ac9a8317fc67d9
|
|
| BLAKE2b-256 |
4bea1e08caef2001c75a892fdc27754d84904da8b5dc73947e14963991ffd5da
|
File details
Details for the file fastapi_bearer_authzn-0.3.1-py3-none-any.whl.
File metadata
- Download URL: fastapi_bearer_authzn-0.3.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81db335cde69f995772a9635ca0446bfe6f4526a0086be6d52f8f7838be282ef
|
|
| MD5 |
8a415386ef29fe92b660feab6f19990b
|
|
| BLAKE2b-256 |
90d3c64b1dea28e17f79e81744762e477d7741887fd77499aca3d12a92398587
|