Python utility functions and Django/Flask middlewares for validating JWT tokens from Google's Identity-Aware Proxy
Project description
Validating JWT tokens from the Google Identity-Aware Proxy as middleware.
Install
pip install -e git+git@github.com:newsdev/nyt-pyiap.git
Usage
Django
Add to settings
Update your settings.py file to add the Django middleware.
MIDDLEWARE_CLASSES = [ ... 'pyiap.django.VerifyJWTMiddleware', ... ]
The request object in views.py will have two new attributes added: - request.jwt_user_id: The Google internal ID of the user who has been verified by IAP. - request.jwt_user_email: The email address and email type of the user who has been verified by IAP.
Flask
Update your Flask app.py to wrap your instantiated Flask() application’s wsgi_app with the VerifyJWTMiddleware.
app = Flask(__name__) app.wsgi_app = VerifyJWTMiddleware(app.wsgi_app)
The request.environ object in app.py will have two new attributes added: - request.environ['jwt_user_id']: The Google internal ID of the user who has been verified by IAP. - request.environ['jwt_user_email']: The email address and email type of the user who has been verified by IAP.
Contributing
TBD.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file nyt-pyiap-0.0.6.tar.gz
.
File metadata
- Download URL: nyt-pyiap-0.0.6.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c38c345ed979060acc1a1692662a8d369b714137e575d417f5fde9477e49dbc |
|
MD5 | a2c51df3b4c56f1761b5f3c7c0dc67b3 |
|
BLAKE2b-256 | 3e012c16801e7287c65c648a7f973a04384f5a9f173d846c1f02daeb2764528f |