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

Should read different rather than differetn.

Although I have the module in my virtualenv but I am still getting this error, is there anyway to fix it? pip freeze : certifi==2019.3.9 chardet==3.0.4 httplib2==0.12.3 idna==2.8 oauth2==1.9.0.post1 oauth2client==4.1.3...

Although there is a default for body to be bytes, if overridden then encode it

Hi, as a beginner with Oauth I have a couple doubts: - do we have to explicitly sign requests or is the client going to do it for us? -...

Hello @joestump , Please, archive this repo. Here more detail: https://help.github.com/en/articles/archiving-a-github-repository Thanks!

when i use this __init__.py i got this issue

[Logging-into-Django-w--Twitter](https://github.com/joestump/python-oauth2/wiki/Logging-into-Django-w--Twitter) ``` def twitter_login(request): resp, content = client.request(request_token_url,"GET") if resp['status'] != '200': print(resp['status']) raise Exception("Invalid response from Twitter") request.session['request_token'] = dict(cgi.parse_qsl(content)) print(request.session['request_token']) t = dict((k,f(v)) for k,v in request.session['request_token'].items()) t...