authlib
authlib copied to clipboard
The ultimate Python library in building OAuth, OpenID Connect clients and servers. JWS,JWE,JWK,JWA,JWT included.
While packaging this package for openSUSE we try to start running the testsuite during the packaging (so that we may catch some unexpected failure to build package correctly) and when...
**Describe the bug** In 0.15.5, the initializer and sign method for class ClientSecretJWT looked like this: ``` def __init__(self, token_endpoint=None, claims=None, header=None): self.token_endpoint = token_endpoint self.claims = claims self.header =...
**Is your feature request related to a problem? Please describe.** I've been trying to talk to Solid (http://solidproject.org) servers with Python. Unfortunately, currently Solid server only works with DPoP tokens....
**Is your feature request related to a problem? Please describe.** I'd like Authlib to support logging out of open id connect servers. AFAIK this is handled through an additional spec...
**Describe the bug** A change introduced in 1.0.0 makes `fetch_access_token()` return a `requests.exceptions.HTTPError` instead of an `OAuthError`. Tested in Flask integration. **To Reproduce** Run code equivalent to this in a...
A double "client" layers when using Starlette integration is confusing and makes tedious to configure underlying 'real' httpx async client. A sample code below displays a few problems: ```python oauth...
I am trying to use signal for automatic token update . As mentioned in the docs we can use signals to do so. Here is my code for the client...
**Describe the bug** It happens when using authlib to configure Keycloak for Airflow. Everything works perfectly up until redirecting back from Keycloak to Airflow. **Error Stacks** ``` Something bad has...
**Is your feature request related to a problem? Please describe.** We have Okta as IDP which is serving self signed certs. While making the GET and POST requests to OKTA...