infohash
infohash
Thanks for figuring it out. The change was made by this PR: * gh-169 I will add a fix to address your issue.
I'll add exception handling there to let the user know that it's a bad access token format. I have an open PR which does few changes to these methods, I'll...
The reason is you don't decorate swagger-ui view function with OIDC and you can't because swagger-ui is provided by the 3rd party package. What you should do is document the...
What can be the expected version that will bring SQLAlchemy 2.0 support. I am making a service that will use SQLAlchemy 2.0 APIs. I will also integrate Airflow with that...
This is why I forked SQLAlchemy 2.0 and put it in my project's source directory instead of installing it as a project dependency. Once airflow ecosystem completely moves to SQLA...
The error is originating from here: `oic.Client.handle_provider_config` ```python if not self.allow.get("issuer_mismatch", False) and _issuer != _pcr_issuer: raise PyoidcError( "provider info issuer mismatch '%s' != '%s'" % (_issuer, _pcr_issuer) ) ```...
`token_endpoint` and `userinfo_endpoint` are missing in your provider configuration. @zamzterz Mark this as completed.
@zamzterz This bug may start affecting users if not addressed soon. Do you have some time to review?
@zamzterz What do you think? This idea is taken from google documentation on verifying the token. They recommend short lived caching of introspection response.
Caching can be turned off entirely by setting `ProviderConfiguration.DEFAULT_CACHE_TTL` to 0. By default, we can set it to 0 and let the user to decide if he wants to enable...