{"id":17909074,"url":"https://github.com/mback2k/python-appengine-auth","last_synced_at":"2026-07-06T01:31:21.498Z","repository":{"id":57456729,"uuid":"47474612","full_name":"mback2k/python-appengine-auth","owner":"mback2k","description":"Python Google App Engine Authentication using OAuth Profile endpoint application https://github.com/mback2k/appengine-oauth-profile","archived":false,"fork":false,"pushed_at":"2015-12-22T14:15:49.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-08T22:13:09.835Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mback2k.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-05T22:11:46.000Z","updated_at":"2015-12-05T22:12:10.000Z","dependencies_parsed_at":"2022-09-02T16:58:30.108Z","dependency_job_id":null,"html_url":"https://github.com/mback2k/python-appengine-auth","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fpython-appengine-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fpython-appengine-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fpython-appengine-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fpython-appengine-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mback2k","download_url":"https://codeload.github.com/mback2k/python-appengine-auth/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246967576,"owners_count":20862278,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-28T19:19:56.165Z","updated_at":"2025-10-24T08:41:16.627Z","avatar_url":"https://github.com/mback2k.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Remote Google App Engine OAuth backend for Django\n=================================================\n\n[Python-AppEngine-Auth](https://github.com/mback2k/python-appengine-auth) is an\nextension to [Python-Social-Auth](https://github.com/omab/python-social-auth)\nwhich adds a OAuth backend for Google App Engine based Google Accounts.\n\nThis application makes use of the\n[Google App Engine OAuth Profile endpoint application](https://github.com/mback2k/appengine-oauth-profile)\nwhich is by default hosted at https://oauth-profile.appspot.com/\n\nDependencies\n------------\n- python-social-auth [https://github.com/omab/python-social-auth]\n- requests-oauthlib  [https://github.com/requests/requests-oauthlib]\n\nInstallation\n------------\nInstall the latest version from pypi.python.org:\n\n    pip install python-appengine-auth\n\nInstall the development version by cloning the source from github.com:\n\n    pip install git+https://github.com/mback2k/python-appengine-auth.git\n\nConfiguration\n-------------\nAdd the package to your `INSTALLED_APPS`:\n\n    INSTALLED_APPS += (\n        'social.apps.django_app.default',\n        'social_appengine_auth',\n    )\n\nAdd the desired backends to your `AUTHENTICATION BACKENDS`:\n\n    AUTHENTICATION_BACKENDS += (\n        'social_appengine_auth.backends.GoogleAppEngineOAuth',\n        'social_appengine_auth.backends.GoogleAppEngineOAuth2',\n    )\n\nAdd the pipeline to your `SOCIAL_AUTH_PIPELINE`:\n\n    SOCIAL_AUTH_PIPELINE = (\n        'social.pipeline.social_auth.social_details',\n        'social.pipeline.social_auth.social_uid',\n        'social.pipeline.social_auth.auth_allowed',\n        'social.pipeline.social_auth.social_user',\n        'social.pipeline.user.get_username',\n        # Add the following custom pipeline:\n        'social_appengine_auth.pipelines.associate_by_user_id',\n        # 'social.pipeline.mail.mail_validation',\n        # 'social.pipeline.social_auth.associate_by_email',\n        'social.pipeline.user.create_user',\n        'social.pipeline.social_auth.associate_user',\n        'social.pipeline.social_auth.load_extra_data',\n        'social.pipeline.user.user_details',\n    )\n\nAdditional Settings\n-------------------\nAdd some or all of the following settings to your `settings.py`:\n\n    # Hostname of the OAuth and Web Service endpoint\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_SERVER = 'oauth-profile.appspot.com'\n\n    # Use static and unique Google App Engine user's user_id as identifier\n    # Defaults to False which makes it use the user's email address\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_USE_UNIQUE_USER_ID = True\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH2_USE_UNIQUE_USER_ID = True\n\n    # Setup Google OAuth 1.0 consumer key and secret\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_KEY = ''\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH_KEY = ''\n\n    # or Setup Google OAuth 2.0 client id and secret\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH2_KEY = ''\n    SOCIAL_AUTH_GOOGLE_APPENGINE_OAUTH2_SECRET = ''\n\nPlease refer to the [Python-Social-Auth](http://psa.matiasaguirre.net/)\ndocumentation for additional information.\n\nLicense\n-------\n* Released under MIT License\n* Copyright (c) 2012-2015 Marc Hoersken \u003cinfo@marc-hoersken.de\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmback2k%2Fpython-appengine-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmback2k%2Fpython-appengine-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmback2k%2Fpython-appengine-auth/lists"}