OpenID Connect support for Flask.
This library should work with any standards compliant OpenID Connect provider.
It has been tested with:
This project comes as is, it is no longer being maintained as it does not need to at it's core. Any necessary updates will be reviewed and released.
- Added extra header option to requests
OIDC_EXTRA_REQUEST_HEADERS
. This adds the ability to add aHost: <issuer>
header in environments where the issuer is no the same DNS as where the request is sent to. E.glocalhost
vs127.0.0.1
. - Token caching added: svintit#9
- Better error handling: svintit#5
- Useful helper functions added get_token and for clearing specific tokens