auth0rization 1.0.0

Creator: coderz1093

Last updated:

Add to Cart

Description:

auth0rization 1.0.0

auth0rization
A library to provide simple methods to validate and use Auth0 JWT tokens.
Installation
pip install auth0rization

Example usage
import json
import auth0rization

access_token = "<access_token>"

validator = auth0rization.Validator(
domain="<auth0_domain>",
audience="<audience>"
)

access = validator.validate(access_token, "read:example")

profile = access.user_profile()

print(json.dumps(profile, indent=2))

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.