https://github.com/mback2k/python-appengine-auth
Python Google App Engine Authentication using OAuth Profile endpoint application https://github.com/mback2k/appengine-oauth-profile
https://github.com/mback2k/python-appengine-auth
Last synced: 7 months ago
JSON representation
Python Google App Engine Authentication using OAuth Profile endpoint application https://github.com/mback2k/appengine-oauth-profile
- Host: GitHub
- URL: https://github.com/mback2k/python-appengine-auth
- Owner: mback2k
- License: mit
- Created: 2015-12-05T22:11:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-22T14:15:49.000Z (over 10 years ago)
- Last Synced: 2025-02-08T22:13:09.835Z (over 1 year ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
Remote Google App Engine OAuth backend for Django
=================================================
[Python-AppEngine-Auth](https://github.com/mback2k/python-appengine-auth) is an
extension to [Python-Social-Auth](https://github.com/omab/python-social-auth)
which adds a OAuth backend for Google App Engine based Google Accounts.
This application makes use of the
[Google App Engine OAuth Profile endpoint application](https://github.com/mback2k/appengine-oauth-profile)
which is by default hosted at https://oauth-profile.appspot.com/
Dependencies
------------
- python-social-auth [https://github.com/omab/python-social-auth]
- requests-oauthlib [https://github.com/requests/requests-oauthlib]
Installation
------------
Install the latest version from pypi.python.org:
pip install python-appengine-auth
Install the development version by cloning the source from github.com:
pip install git+https://github.com/mback2k/python-appengine-auth.git
Configuration
-------------
Add the package to your `INSTALLED_APPS`:
INSTALLED_APPS += (
'social.apps.django_app.default',
'social_appengine_auth',
)
Add the desired backends to your `AUTHENTICATION BACKENDS`:
AUTHENTICATION_BACKENDS += (
'social_appengine_auth.backends.GoogleAppEngineOAuth',
'social_appengine_auth.backends.GoogleAppEngineOAuth2',
)
Add the pipeline to your `SOCIAL_AUTH_PIPELINE`:
SOCIAL_AUTH_PIPELINE = (
'social.pipeline.social_auth.social_details',
'social.pipeline.social_auth.social_uid',
'social.pipeline.social_auth.auth_allowed',
'social.pipeline.social_auth.social_user',
'social.pipeline.user.get_username',
# Add the following custom pipeline:
'social_appengine_auth.pipelines.associate_by_user_id',
# 'social.pipeline.mail.mail_validation',
# 'social.pipeline.social_auth.associate_by_email',
'social.pipeline.user.create_user',
'social.pipeline.social_auth.associate_user',
'social.pipeline.social_auth.load_extra_data',
'social.pipeline.user.user_details',
)
Additional Settings
-------------------
Add some or all of the following settings to your `settings.py`:
# Hostname of the OAuth and Web Service endpoint
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_SERVER = 'oauth-profile.appspot.com'
# Use static and unique Google App Engine user's user_id as identifier
# Defaults to False which makes it use the user's email address
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_USE_UNIQUE_USER_ID = True
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH2_USE_UNIQUE_USER_ID = True
# Setup Google OAuth 1.0 consumer key and secret
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_KEY = ''
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_KEY = ''
# or Setup Google OAuth 2.0 client id and secret
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH2_KEY = ''
SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH2_SECRET = ''
Please refer to the [Python-Social-Auth](http://psa.matiasaguirre.net/)
documentation for additional information.
License
-------
* Released under MIT License
* Copyright (c) 2012-2015 Marc Hoersken