From e40e96b1f8dc8ad3dada56a1e7e80741c695263f Mon Sep 17 00:00:00 2001 From: HEMANTH SATYAKUMAR Date: Tue, 15 Oct 2019 16:54:19 +0530 Subject: [PATCH] IssueId: 453 Summary: Python express authentication using twitter, google, github needs to be fixed with pythonexpress.org token --- settings/common.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/settings/common.py b/settings/common.py index 835845a..cae6389 100644 --- a/settings/common.py +++ b/settings/common.py @@ -237,6 +237,15 @@ # Social media keys +#GitHub +SOCIALACCOUNT_PROVIDERS = { + 'github': { + 'SCOPE': [ + 'user', + ], + } +} + # Twitter TWITTER_CONSUMER_KEY = os.environ.get("TWITTER_CONSUMER_KEY", "") TWITTER_CONSUMER_SECRET = os.environ.get("TWITTER_CONSUMER_SECRET", "")