python-oauth2 icon indicating copy to clipboard operation
python-oauth2 copied to clipboard

A fully tested, abstract interface to creating OAuth clients and servers.

Results 76 python-oauth2 issues
Sort by recently updated
recently updated
newest added
trafficstars

in clients/imap.py: ``` imaplib.IMAP4_SSL.authenticate(self, 'XOAUTH', lambda x: oauth2.build_xoauth_string(url, consumer, token)) ``` should read: ``` return imaplib.IMAP4_SSL.authenticate(self, 'XOAUTH', lambda x: oauth2.build_xoauth_string(url, consumer, token)) ``` Without this change the oauth2 IMAP4_SSL.authenticate() method...

Enhancement

Hi, One of the REST URL's response is json [Content-Type:application/json] but when i tried to overrride the default headers it doesn't reflect in the request headers - > > >...

Bug
Needs Verification

The response from the following code https request claimed no POST data was included in the request. I believe this is unexpected and unwanted behavior? ``` import oauth2 as oauth...

Bug
Needs Verification

Hello, In case of 30X redirect on a GET, httplib2 calls back on oauth2 client.request with new location, and body filled with oauth tokens. oauth2 client.request then generates new oauth...

Bug

The OAuth 1.0 spec at http://tools.ietf.org/html/rfc5849#section-3.4.1.3.2 clearly states that the encoding is done _before_ the sorting. python-oauth2 sorts before encoding. Also the tests for this routine are incorrect. Please fix...

Bug

Here is a simple test case: ``` python consumer = oauth.Consumer('key', 'secret') method = oauth.SignatureMethod_HMAC_SHA1() # Client client_req = oauth.Request.from_consumer_and_token( consumer, token=None, http_method='GET', http_url='http://localhost/' ) client_req.sign_request(method, consumer, None) # Server...