python-oauth2
python-oauth2 copied to clipboard
A fully tested, abstract interface to creating OAuth clients and servers.
As currently shown the example will always fail after the pincode is given with a 401 error. The reason is that oAuth v1.0a requires that the oauth_verifier parameter be present...
Class method Request.from_request() checks 'Authorization' HTTP header for OAuth parameters. However, if you deploy web app with mod_wsgi, 2 important things happen: 1. By default, Authorization header is dropped, and...
I'm building an application and using your provided python-oauth2 deb from the PPA. Everything works on Ubuntu maverick and python2.6. On natty and python2.7 (the default for natty), I get...
This snippet doesn't work right in python 2.4.3. It appears again in get_normalized_parameters(). ``` python except TypeError, e: assert 'is not iterable' in str(e) ``` The problem is that the...
import oauth2 as oauth i have create a client using oauth2 GET works well but when i try to specify the body of the post it gave an error client...
Hi there, # I am new to this and trying to get oauth2 installed. Here's what I get. Thanks for your help! %run /Users/stephanesantos/Desktop/Project_Albuquerque/python-oauth2-master/setup.py An exception has occurred, use %tb...
I'm trying to do a status update into twitter. But it responds with: {"errors":[{"code":170,"message":"Missing required parameter: status."}]} ``` import json import oauth2 token = oauth2.Token( key=access_token['oauth_token'], secret=access_token['oauth_token_secret']) client = oauth2.Client(consumer,...
Most tests do not require networking, but test_access_token_get, test_access_token_post, test_two_legged_get and test_two_legged_post do. Please provide an easy way to run only tests which do not require networking.
I recently worked with an OAuth server that required a POST oauth_token parameter unrelated to the OAuth access token, in addition to the access token. Currently, oauth2 has no way...
imaplib2 adds [IDLE](http://en.wikipedia.org/wiki/IMAP_IDLE) functionality, and is built on and includes all the functionality of imaplib. The module is hosted by the author here: http://www.janeelix.com/piers/python/ It could be included as an...