Run oidc token verification
Project description
Flask OIDC Verifier
Implements implicit OIDC verification for Flask, similar to drf-oidc-auth in Django.
Quickstart
Assumptions: tokens are passed via headers of the form Authorization: Bearer $YOUR_TOKEN
. These can be changed in the settings
- Install with
pip install flask-oidc-verifier
- Add the following to your flask config (at a minimum, see the Config section for more options). Replace the values with relevant config values:
class Config():
...
OIDC_ENDPOINT = "https://my.oidc.endpoint"
OIDC_AUDIENCES = ("MY_AUDIENCES", )
...
- Initialize the authentication provider:
from flask import Flask
from flask_oidc_verifier.decorators import JWTVerification
from typing import Dict, Any
app = Flask(__name__)
# Define a callback for what to do with the verified JWT contents
def on_verified(d: Dict[Any, Any]) -> None:
# get_or_create_user
...
auth = auth.init_app(app, on_verified=on_verified)
- Use as a decorator:
@app.route("/protected/<path:filename>")
@auth.jwt_required
def protected_file(filename: str) -> None:
return send_from_directory("protected", filename)
Config
TODO
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
File details
Details for the file flask_oidc_verifier-0.0.8.tar.gz
.
File metadata
- Download URL: flask_oidc_verifier-0.0.8.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a0613a5074be7eb6c6fde6457c8f193c23920697d12e90b1a66e707c780065f |
|
MD5 | c5e518cbf8c6ab5369d2581816b64206 |
|
BLAKE2b-256 | 6bf04cc57be71130cc65820deb7b806a02a366793018ec06c47ff136cc280222 |
File details
Details for the file flask_oidc_verifier-0.0.8-py3-none-any.whl
.
File metadata
- Download URL: flask_oidc_verifier-0.0.8-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe0f2bdb75effa5d7e75c43735d6089747dc4930f1314b3ffe6868ea0d399708 |
|
MD5 | 8217dc947aa1b1678c332959324454d6 |
|
BLAKE2b-256 | 66b5297501f0a6512ef36509950b62f715bec4e09334dd568de77c0ef9c77282 |