Skip to main content

A package for validating AWS Cognito tokens and using them as decorators in Flask routes or standalone Python functions

Project description

Token Validator

A Python package for validating AWS Cognito tokens and using them as decorators. You can use this package with Flask or any other Python framework.

Installation

pip install cognito-token-validator

Usage

Initialization

First, initialize the TokenValidator with the necessary parameters:

  • region: The AWS region where your Cognito user pool is located.
  • user_pool_id: The ID of your Cognito user pool.
  • client_id: The client ID of your Cognito application.
  • get_auth_header: A function that retrieves the token from the request context.
  • whitelisted_emails (optional): A List of string containing the whitelist of emails. if the list is empty, all emails are allowed. If the list is not empty, only the emails in the list are allowed.
  • cache_max_size (optional): The maximum number of tokens to cache. Default is 10.
  • ttl (optional): The time-to-live for cached tokens in seconds. Default is 3600.
from cognito_token_validator import TokenValidator

# Initialize the TokenValidator
token_validator = TokenValidator(
    region='us-east-1',
    user_pool_id='your_user_pool_id',
    client_id='your_client_id',
    get_auth_header=lambda: request.headers.get('Authorization'),
    whitelisted_emails=['example@example.com']
)

Using with Flask

To use the TokenValidator in a Flask app, apply the token_required decorator to your routes:

from flask import Flask, request, jsonify

app = Flask(__name__)

@app.route('/protected')
@token_validator.token_required
def protected():
    return 'This is a protected route'

if __name__ == '__main__':
    app.run(debug=True)

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

cognito_token_validator-0.1.3.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

cognito_token_validator-0.1.3-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file cognito_token_validator-0.1.3.tar.gz.

File metadata

File hashes

Hashes for cognito_token_validator-0.1.3.tar.gz
Algorithm Hash digest
SHA256 b10997912a33558df7df84ed2d21154ea9290c092c67048f7e6d512c91642645
MD5 01cb346b9ffd3f5e075378d0f9253c7a
BLAKE2b-256 c822572c7eabc020bcdcdaae32df6394aaef24c0bcb4c50ec5c78a91c145abab

See more details on using hashes here.

File details

Details for the file cognito_token_validator-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for cognito_token_validator-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f118404da9b934ed7224228ffadbb865db7783860839a32a8d062aa0f70900fc
MD5 9ffccb6521813c0b02645baa73d5ce24
BLAKE2b-256 b1ffaf94bd4f138019236561ed9951ef1d451828564094ccd1dbeb3c8d9d1b46

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