{"id":17909069,"url":"https://github.com/mback2k/django-appengine-auth","last_synced_at":"2025-06-29T18:03:57.342Z","repository":{"id":3780554,"uuid":"4858023","full_name":"mback2k/django-appengine-auth","owner":"mback2k","description":"Django Google App Engine Authentication using OAuth Profile endpoint application","archived":false,"fork":false,"pushed_at":"2015-12-22T14:12:47.000Z","size":12,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T18:53:11.645Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/mback2k/appengine-oauth-profile","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":"2012-07-02T09:33:34.000Z","updated_at":"2016-06-18T11:42:52.000Z","dependencies_parsed_at":"2022-08-17T23:01:06.052Z","dependency_job_id":null,"html_url":"https://github.com/mback2k/django-appengine-auth","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/mback2k/django-appengine-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fdjango-appengine-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fdjango-appengine-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fdjango-appengine-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fdjango-appengine-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mback2k","download_url":"https://codeload.github.com/mback2k/django-appengine-auth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mback2k%2Fdjango-appengine-auth/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261005223,"owners_count":23095791,"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.067Z","updated_at":"2025-06-29T18:03:57.321Z","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[Django-AppEngine-Auth](https://github.com/mback2k/django-appengine-auth) is an\nextension to [Django-Social-Auth](https://github.com/omab/django-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- django-social-auth [https://github.com/omab/django-social-auth]\n- oauth2             [https://github.com/simplegeo/python-oauth2]\n\nInstallation\n------------\nInstall the latest version from pypi.python.org:\n\n    pip install django-appengine-auth\n\nInstall the development version by cloning the source from github.com:\n\n    pip install git+https://github.com/mback2k/django-appengine-auth.git\n\nConfiguration\n-------------\nAdd the package to your `INSTALLED_APPS`:\n\n    INSTALLED_APPS += (\n        'social_auth',\n        'appengine_auth',\n    )\n\nAdd the desired backends to your `AUTHENTICATION BACKENDS`:\n\n    AUTHENTICATION_BACKENDS += (\n        'appengine_auth.backends.GoogleAppEngineOAuthBackend',\n        'appengine_auth.backends.GoogleAppEngineOAuth2Backend',\n    )\n\nAdd the pipeline to your `SOCIAL_AUTH_PIPELINE`:\n\n    SOCIAL_AUTH_PIPELINE = (\n        'social_auth.backends.pipeline.social.social_auth_user',\n        'appengine_auth.pipelines.associate_by_user_id',\n        # Removed by default since it can be a dangerouse behavior that\n        # could lead to accounts take over.\n        #'social_auth.backends.pipeline.associate.associate_by_email',\n        'social_auth.backends.pipeline.user.get_username',\n        'social_auth.backends.pipeline.user.create_user',\n        'social_auth.backends.pipeline.social.associate_user',\n        'social_auth.backends.pipeline.social.load_extra_data',\n        'social_auth.backends.pipeline.user.update_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    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    GOOGLE_APPENGINE_OAUTH_USE_UNIQUE_USER_ID = True\n\n    # Setup Google OAuth 1.0 consumer key and secret\n    GOOGLE_APPENGINE_CONSUMER_KEY = ''\n    GOOGLE_APPENGINE_CONSUMER_SECRET = ''\n\n    # or Setup Google OAuth 2.0 client id and secret\n    GOOGLE_APPENGINE_CLIENT_ID = ''\n    GOOGLE_APPENGINE_CLIENT_SECRET = ''\n\nPlease refer to the [Django-Social-Auth](http://django-social-auth.readthedocs.org/)\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%2Fdjango-appengine-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmback2k%2Fdjango-appengine-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmback2k%2Fdjango-appengine-auth/lists"}