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

Hey there, Right now it doesn't look like `requests-oauthlib` passes the `cert` argument on to `requests` during a `request`, or `fetch_token`. Maybe I'm missing how to do it? I'm happy...

I am using `fetch_token` with the standard web client, but the server I am talking to returns a non-standard response (its just a text string saying `403/ bad auth ...`)....

I'm attempting to make a request that has a query parameter which contains apostrophes. oauthlib seems to only consider `=&;:%+~,*@!()/?` to be safe, but requests isn't encoding the apostrophe as...

Sometimes token can be revoked or otherwise made unusable on servers for various reasons without client knowing. It would be nice if `request()` could intercept such a specific error (recognizing...

[RFC 6749](https://tools.ietf.org/html/rfc6749#section-2.3) recommends the use of HTTP Basic auth for OAuth2. While requests-oauthlib allows for authentication details to be sent along explicitly when fetching tokens, the credentials would have to...

Hi guys! First of all, using this library has really made things easy, so I want to thank all the contributors for their hard work! Anyway, I was wondering how...

As a suggestion, could we have more examples? Since this can get quite complicated, someone might just need the right example to get started. I am also currently interested in...

Contributor Friendly
docs

I've been looking for a way to persist tokens. The OAuth2Session.token_updater callback seems like the right tool for the job but it omits essential context information such as who is...

In Python 2, I keep getting ``` pytb File "/Users/aaronmeurer/anaconda/envs/sympy-release/lib/python2.7/site-packages/requests/api.py", line 94, in post return request('post', url, data=data, json=json, **kwargs) File "/Users/aaronmeurer/anaconda/envs/sympy-release/lib/python2.7/site-packages/requests/api.py", line 49, in request return session.request(method=method, url=url, **kwargs)...

I just worked through the [Facebook authentication tutorial](https://requests-oauthlib.readthedocs.org/en/latest/examples/facebook.html), and was stuck for quite some time until I started tracing the logs. ## How to Reproduce My problem was I registered...