requests-oauthlib icon indicating copy to clipboard operation
requests-oauthlib copied to clipboard

OAuthlib support for Python-Requests!

Results 137 requests-oauthlib issues
Sort by recently updated
recently updated
newest added

The Python 3.13 release candidate is out now! :rocket: The Release Manager has issued a [call to action](https://discuss.python.org/t/python-3-13-0-release-candidate-1-released/59703?u=hugovk]): > We strongly encourage maintainers of third-party Python projects to prepare their...

Right now, the auth code PKCE flow is using a code verifier generated when creating the authorization url. This is fine, however I want to be able to use another...

URL" https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow.html#backend-application-flow ``` theauth = HTTPBasicAuth(creds.ClientID,creds.ClientSecret) client = BackendApplicationClient(creds.ClientID) bcauth = OAuth2Session(client) token = bcauth.fetch_token(token_url=tokenendpoint,auth=theauth) ``` RESPONSE: > > "Please supply either code or " "authorization_response parameters." > ValueError: Please...

The oauthlib support it, but here are the support missing. Here are the [documentation](https://oauthlib.readthedocs.io/en/latest/oauth2/clients/deviceclient.html) for it. It will be needed for example for cli apps, where you don't have an...

Hi, I'm using latest version of the `requests-authlib`package. For our authorization server, we added support for audience claim, according [RFC 8707](https://datatracker.ietf.org/doc/html/rfc8707#name-resource-parameter). So, basically put, one client can request access to...

`OAuth2Session.request()` now has the refresh request's authentication method [reuse its regular `auth`](https://github.com/requests/requests-oauthlib/blob/c003c22eceb9e54a7cfe242b7976412a2c98a972/requests_oauthlib/oauth2_session.py#L540C21-L548) parameter (not specific to refresh), falling back to HTTP Basic Auth only if the former is missing. This...