Drop-in Python OAuth handlers for popular sites!
This is a collection of drop-in Python request handlers for the initial OAuth client flows for many popular sites, including Blogger, Disqus, Dropbox, Facebook, Flickr, GitHub, Google, IndieAuth, Instagram, LinkedIn, Mastodon, Medium, Tumblr, Twitter, and WordPress.com.
- Available on PyPi. Install with
pip install oauth-dropins
. - Click here for getting started docs.
- Click here for reference docs.
- A demo app is deployed at oauth-dropins.appspot.com.
oauth-dropins stores user credentials in Google Cloud Datastore. It's primarily designed for Google App Engine, but it can be used in any Python web application, regardless of host or framework.
Versions 3.0 and above support App Engine's Python 3 runtimes, both Standard and Flexible. If you're on the Python 2 runtime, use version 2.2.
If you clone the repo directly or want to contribute, see Development for setup instructions.
This software is released into the public domain. See LICENSE for details.
Here's a full example of using the Facebook drop-in.
-
Install oauth-dropins with
pip install oauth-dropins
. -
Put your Facebook application's ID and secret in two plain text files in your app's root directory,
facebook_app_id
andfacebook_app_secret
. (If you use git, you'll probably also want to add them to your.gitignore
.) -
Create a
facebook_oauth.py
file with these contents:from oauth_dropins import facebook import webapp2 application = webapp2.WSGIApplication([ ('/facebook/start_oauth', facebook.StartHandler.to('/facebook/oauth_callback')), ('/facebook/oauth_callback', facebook.CallbackHandler.to('/next'))]
-
Add these lines to
app.yaml
:- url: /facebook/(start_oauth|oauth_callback) script: facebook_oauth.application secure: always
Voila! Send your users to /facebook/start_oauth
when you want them to connect their Facebook account to your app, and when they're done, they'll be redirected to /next?access_token=...
in your app.
All of the sites provide the same API. To use a different one, just import the site module you want and follow the same steps. The filenames for app keys and secrets also differ by site; see each silo's .py
file for its filenames.
There are three main parts to an OAuth drop-in: the initial redirect to the site
itself, the redirect back to your app after the user approves or declines the
request, and the datastore entity that stores the user's OAuth credentials and
helps you use them. These are implemented by StartHandler
,
CallbackHandler
, and auth entities,
respectively.
The request handlers are full WSGI applications and may be used in any Python web framework that supports WSGI (PEP 333). Internally, they're implemented with webapp2.
This HTTP request handler class redirects you to an OAuth-enabled site so it can ask the user to grant your app permission. It has two useful methods:
-
to(callback_path, scopes=None)
is a factory method that returns a request handler class you can use in a WSGI application. The argument should be the path mapped toCallbackHandler
in your application. This also usually needs to match the callback URL in your app's configuration on the destination site.If you want to add OAuth scopes beyond the default one(s) needed for login, you can pass them to the
scopes
kwarg as a string or sequence of strings, or include them in thescopes
query parameter in the POST request body. This is currently supported with Facebook, Google, Blogger, and Instagram.Some of the sites that use OAuth 1 support alternatives. For Twitter,
StartHandler.to
takes an additionalaccess_type
kwarg that may beread
orwrite
. It's passed through to Twitterx_auth_access_type
. For Flickr, the start handler accepts aperms
POST query parameter that may beread
,write
ordelete
; it's passed through to Flickr unchanged. (Flickr claims it's optional, but sometimes breaks if it's not provided.) -
redirect_url(state=None)
returns the URL to redirect to at the destination site to initiate the OAuth flow.StartHandler
will redirect here automatically if it's used in a WSGI application, but you can also instantiate it and call this manually if you want to control that redirect yourself:
class MyHandler(webapp2.RequestHandler):
def get(self):
...
handler_cls = facebook.StartHandler.to('/facebook/oauth_callback')
handler = handler_cls(self.request, self.response)
self.redirect(handler.redirect_url())
However, this is not currently supported for Google and Blogger. Hopefully that will be fixed in the future.
This class handles the HTTP redirect back to your app after the user has granted or declined permission. It also has two useful methods:
-
to(callback_path)
is a factory method that returns a request handler class you can use in a WSGI application, similar toStartHandler
. The callback path is the path in your app that users should be redirected to after the OAuth flow is complete. It will include astate
query parameter with the value provided by theStartHandler
. It will also include an OAuth token in its query parameters, eitheraccess_token
for OAuth 2.0 oraccess_token_key
andaccess_token_secret
for OAuth 1.1. It will also include anauth_entity
query parameter with the string key of an auth entity that has more data (and functionality) for the authenticated user. If the user declined the OAuth authorization request, the only query parameter besidesstate
will bedeclined=true
. -
finish(auth_entity, state=None)
is run in the initial callback request after the OAuth response has been processed.auth_entity
is the newly created auth entity for this connection, orNone
if the user declined the OAuth authorization request.By default,
finish
redirects to the path you specified into()
, but you can subclassCallbackHandler
and override it to run your own code inside the OAuth callback instead of redirecting:
class MyCallbackHandler(facebook.CallbackHandler):
def finish(self, auth_entity, state=None):
self.response.write('Hi %s, thanks for connecting your %s account.' %
(auth_entity.user_display_name(), auth_entity.site_name()))
However, this is not currently supported for Google and Blogger. Hopefully that will be fixed in the future.
Each site defines an App Engine datastore ndb.Model class that stores each user's OAuth credentials and other useful information, like their name and profile URL. The class name is of the form SiteAuth, e.g. FacebookAuth. Here are the useful methods:
-
site_name()
returns the human-readable string name of the site, e.g. "Facebook". -
user_display_name()
returns a human-readable string name for the user, e.g. "Ryan Barrett". This is usually their first name, full name, or username. -
access_token()
returns the OAuth access token. For OAuth 2 sites, this is a single string. For OAuth 1.1 sites (currently just Twitter, Tumblr, and Flickr), this is a(string key, string secret)
tuple.
The following methods are optional. Auth entity classes usually implement at least one of them, but not all.
-
api()
returns a site-specific API object. This is usually a third party library dedicated to the site, e.g. Tweepy or python-instagram. See the site class's docstring for details. -
urlopen(data=None, timeout=None)
wrapsurlopen()
and adds the OAuth credentials to the request. Use this for making direct HTTP request to a site's REST API. Some sites may provideget()
instead, which wrapsrequests.get()
.
-
If you get this error:
bash: ./bin/easy_install: ...bad interpreter: No such file or directory
You've probably hit this virtualenv bug: virtualenv doesn't support paths with spaces.
The easy fix is to recreate the virtualenv in a path without spaces. If you can't do that, then after creating the virtualenv, but before activating it, edit the activate, easy_install and pip files in local3/bin/
to escape any spaces in the path.
For example, in activate
, VIRTUAL_ENV=".../has space/local"
becomes VIRTUAL_ENV=".../has\ space/local"
, and in pip
and easy_install
the first line changes from #!".../has space/local3/bin/python"
to #!".../has\ space/local3/bin/python"
.
This should get virtualenv to install in the right place. If you do this wrong at first, you'll have installs in eg /usr/local/lib/python3.7/site-packages
that you need to delete, since they'll prevent virtualenv from installing into the local site-packages
.
-
If you see errors importing or using
tweepy
, it may be becausesix.py
isn't installed. Trypip install six
manually.tweepy
does includesix
in its dependencies, so this shouldn't be necessary. Please let us know if it happens to you so we can debug! -
If you get an error like this:
Running setup.py develop for gdata ... error: option --home not recognized ... InstallationError: Command /usr/bin/python -c "import setuptools, tokenize; __file__='/home/singpolyma/src/bridgy/src/gdata/setup.py'; exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" develop --no-deps --home=/tmp/tmprBISz_ failed with error code 1 in .../src/gdata
...you may be hitting Pip bug 1833.
Are you passing -t
to pip install
? Use the virtualenv instead, it's your
friend. If you really want -t
, try removing the -e
from the lines in
requirements.txt
that have it.
-
If you get this error while running
dev_appserver.py
:RuntimeError: Cannot use the Cloud Datastore Emulator because the packaged grpcio is incompatible to this system. Please install grpcio using pip
...you can fix it by installing grpcio
into the Python 2 that you're runningdev_appserver
with. Usually this is just sudo python2 -m pip install grpcio
.
Breaking changes:
- Python 2 is no longer supported! Including the App Engine Standard Python 2 runtime. On the plus side, the Python 3 runtimes, both Standard and Flexible, are now supported.
- Replace
handlers.memcache_response()
, which used Python 2 App Engine's memcache service, withcache_response()
, which uses local runtime memory. - Remove the
handlers.TemplateHandler.USE_APPENGINE_WEBAPP
toggle to use Python 2 App Engine'sgoogle.appengine.ext.webapp2.template
instead of Jinja. - Blogger:
- Login is now based on Google Sign-In. The
api_from_creds()
,creds()
, andhttp()
methods have been removed. Use the remainingapi()
method to get aBloggerClient
, oraccess_token()
to make API calls manually.
- Login is now based on Google Sign-In. The
- Google:
- Replace
GoogleAuth
with the newGoogleUser
NDB model class, which doesn't depend on the deprecated oauth2client. - Drop
http()
method (which returned anhttplib2.Http
).
- Replace
- Mastodon:
StartHandler
: dropAPP_NAME
/APP_URL
class attributes andapp_name
/app_url
kwargs in theto()
method and replace them with newapp_name()
/app_url()
methods that subclasses should override, since they often depend on WSGI environment variables likeHTTP_HOST
andSERVER_NAME
that are available during requests but not at runtime startup.
webutil
:- Drop
handlers.memcache_response()
since the Python 3 runtime doesn't include memcache. - Drop
handlers.TemplateHandler
support forwebapp2.template
viaUSE_APPENGINE_WEBAPP
, since the Python 3 runtime doesn't includewebapp2
built in. - Remove
cache
andfail_cache_time_secs
kwargs fromutil.follow_redirects()
. Caching is now built in. You can bypass the cache withfollow_redirects.__wrapped__()
. Details.
- Drop
Non-breaking changes:
- Add Meetup support. (Thanks Jamie Tanna!)
- Blogger, Google:
- The
state
query parameter now works!
- The
- Add new
outer_classes
kwarg tobutton_html()
for the outer<div>
, eg as Bootstrap columns. - Add new
image_file
kwarg toStartHandler.button_html()
- Add LinkedIn and Mastodon!
- Add Python 3.7 support, and improve overall Python 3 compatibility.
- Add new
button_html()
method to allStartHandler
classes. Generates the same button HTML and styling as on oauth-dropins.appspot.com. - Blogger: rename module from
blogger_v2
toblogger
. Theblogger_v2
module name is still available as an alias, implemented via symlink, but is now deprecated. - Dropbox: fix crash with unicode header value.
- Google: fix crash when user object doesn't have
name
field. - Facebook: upgrade Graph API version from 2.10 to 4.0.
- Update a number of dependencies.
- Switch from Python's built in
json
module toujson
(built into App Engine) to speed up JSON parsing and encoding.
- Breaking change: switch from Google+ Sign-In (which shuts down in March) to Google Sign-In. Notably, this removes the
googleplus
module and adds a newgoogle_signin
module, renames theGooglePlusAuth
class toGoogleAuth
, and removes itsapi()
method. Otherwise, the implementation is mostly the same. - webutil.logs: return HTTP 400 if
start_time
is before 2008-04-01 (App Engine's rough launch window).
- Fix dev_appserver in Cloud SDK 219 /
app-engine-python
1.9.76 and onward. Background. - Upgrade
google-api-python-client
from 1.6.3 to 1.7.4 to stop using the global HTTP Batch endpoint. - Other minor internal updates.
- IndieAuth: support JSON code verification responses as well as form-encoded (snarfed/bridgy#809).
- More Python 3 updates and bug fixes in webutil.util.
- Add GitHub!
- Facebook:
- Pass
state
to the initial OAuth endpoint directly, instead of encoding it into the redirect URL, so the redirect can match the Strict Mode whitelist.
- Pass
- Add Python 3 support to webutil.util!
- Add humanize dependency for webutil.logs.
Mostly just internal changes to webutil to support granary v1.10.
Mostly just internal changes to webutil to support granary v1.9.
- Flickr:
- Handle punctuation in error messages.
- Facebook:
- Upgrade Graph API from v2.6 to v2.10.
- Flickr:
- Fix broken
FlickrAuth.urlopen()
method.
- Fix broken
- Medium:
- Bug fix for Medium OAuth callback error handling.
- IndieAuth:
- Store authorization endpoint in state instead of rediscovering it from
me
parameter, which is going away.
- Store authorization endpoint in state instead of rediscovering it from
- Updates to bundled webutil library, notably WideUnicode class.
- Add auto-generated docs with Sphinx. Published at oauth-dropins.readthedocs.io.
- Fix Dropbox bug with fetching access token.
- Add Medium.
- Upgrade Facebook API from v2.2 to v2.6.
- Add IndieAuth.
- More consistent logging of HTTP requests.
- Set up Coveralls.
- Flickr:
- Add upload method.
- Improve error handling and logging.
- Bug fixes and cleanup for constructing scope strings.
- Add developer setup and troubleshooting docs.
- Set up CircleCI.
- Flickr: split out flickr_auth.py file.
- Add a number of utility functions to webutil.
- Initial PyPi release.
First, fork and clone this repo. Then, you'll need the Google Cloud SDK with the gcloud-appengine-python
and gcloud-appengine-python-extras
components. Once you have them, set up your environment by running these commands in the repo root directory:
gcloud config set project oauth-dropins
git submodule init
git submodule update
python3 -m venv local3
source local3/bin/activate
pip install -r requirements.txt
Run the demo app locally in dev_appserver.py (so that static files work) with:
dev_appserver.py --log_level debug --enable_host_checking false \
--support_datastore_emulator --datastore_emulator_port=8089 \
--application=oauth-dropins app.yaml
Most dependencies are clean, but we've made patches to gdata-python-client, which is unmaintained but we still need for Blogger's v2 API.
To deploy to production:
gcloud -q beta app deploy --no-cache oauth-dropins *.yaml
The docs are built with Sphinx, including apidoc, autodoc, and napoleon. Configuration is in docs/conf.py
To build them, first install Sphinx with pip install sphinx
. (You may want to do this outside your virtualenv; if so, you'll need to reconfigure it to see system packages with python3 -m venv --system-site-packages local3
.) Then, run docs/build.sh
.
Here's how to package, test, and ship a new release. (Note that this is largely duplicated in granary's readme too.)
- Run the unit tests.
source local3/bin/activate.csh gcloud beta emulators datastore start --consistency=1.0 < /dev/null >& /dev/null & sleep 2s DATASTORE_EMULATOR_HOST=localhost:8081 DATASTORE_DATASET=oauth-dropins \ python3 -m unittest discover kill %1 deactivate
- Bump the version number in
setup.py
anddocs/conf.py
.git grep
the old version number to make sure it only appears in the changelog. Change the current changelog entry inREADME.md
for this new version from unreleased to the current date. - Build the docs. If you added any new modules, add them to the appropriate file(s) in
docs/source/
. Then run./docs/build.sh
. git commit -am 'release vX.Y'
- Upload to test.pypi.org for testing.
python3 setup.py clean build sdist setenv ver X.Y source local3/bin/activate.csh twine upload -r pypitest dist/oauth-dropins-$ver.tar.gz
- Install from test.pypi.org.
cd /tmp python3 -m venv local3 source local3/bin/activate.csh pip3 install --upgrade pip # mf2py 1.1.2 on test.pypi.org is broken :( pip3 install mf2py pip3 install -i https://test.pypi.org/simple --extra-index-url https://pypi.org/simple oauth-dropins deactivate
- Smoke test that the code trivially loads and runs.
Test code to paste into the interpreter:
source local3/bin/activate.csh python3 # run test code below deactivate
from oauth_dropins.webutil import util util.__file__ util.UrlCanonicalizer()('http://asdf.com') # should print 'https://asdf.com/' exit()
- Tag the release in git. In the tag message editor, delete the generated comments at bottom, leave the first line blank (to omit the release "title" in github), put
### Notable changes
on the second line, then copy and paste this version's changelog contents below it.git tag -a v$ver --cleanup=verbatim git push git push --tags
- Click here to draft a new release on GitHub. Enter
vX.Y
in the Tag version box. Leave Release title empty. Copy### Notable changes
and the changelog contents into the description text box. - Upload to pypi.org!
twine upload dist/oauth-dropins-$ver.tar.gz