Skip to main content

Run oidc token verification

Project description

Flask OIDC Verifier

PyPI version

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

  1. Install with pip install flask-oidc-verifier
  2. 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", )
   ...
  1. 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)
  1. 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

flask_oidc_verifier-0.0.8.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

flask_oidc_verifier-0.0.8-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

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

Hashes for flask_oidc_verifier-0.0.8.tar.gz
Algorithm Hash digest
SHA256 6a0613a5074be7eb6c6fde6457c8f193c23920697d12e90b1a66e707c780065f
MD5 c5e518cbf8c6ab5369d2581816b64206
BLAKE2b-256 6bf04cc57be71130cc65820deb7b806a02a366793018ec06c47ff136cc280222

See more details on using hashes here.

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

Hashes for flask_oidc_verifier-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 fe0f2bdb75effa5d7e75c43735d6089747dc4930f1314b3ffe6868ea0d399708
MD5 8217dc947aa1b1678c332959324454d6
BLAKE2b-256 66b5297501f0a6512ef36509950b62f715bec4e09334dd568de77c0ef9c77282

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page