requests-oauthlib
requests-oauthlib copied to clipboard
OAuthlib support for Python-Requests!
Updating the Linkedin example so that it follows the new pattern provided by #530
Addresses https://github.com/requests/requests-oauthlib/issues/544 Adding similar capabilities to the `refresh_token_request` compliance hook as is possible in the `access_token_request` hook, to allow for non standard, non `x-www-form-urlencoded` request bodies in token refresh requests....
Considering the many moving parts of the release process and integration with the PyPi, it would be beneficial to create some sort of release protection or employ a template. I...
pip2 will install version 1.4.0 because PyPI thinks it supports Python 2.7, but it doesn't, and will raise an exception when incompatible code is reached. I don't know how PyPI...
Hi! Request/response headers are currently being logged without any sanitizing being done upfront, which means that bearer tokens are logged. There are many scenarios in which we'd like to use...
Added a badge displaying the monthly download count from pip Trends. You can view more details at - https://piptrends.com/package/requests-oauthlib (If necessary, the link from the badge to the package's pip...
Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.0. Release notes Sourced from requests's releases. v2.32.0 2.32.0 (2024-05-20) 🐍 PYCON US 2024 EDITION 🐍 Security Fixed an issue where setting verify=False on the...
The `fetch_token` function calls the `prepare_request_body` function. However, it does not pass the scope initialized in the `OAuth2Session` class constructor. This leads to `Missing access token` error in cases where...
In some (rare) instances, there is a requirement for the refresh endpoint to need a cert too. Added cert handling to refresh_token, matching fetch_token param's and functionality
I'm trying to implement token refresh using `zitadel`, `fastapi` + `request-oauthlib` using the PCKE flow as followed: ``` python @router.get("/refresh-token") async def refresh_token(request: Request, response: Response): # Log to console...