We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2305e commit 29a1b15Copy full SHA for 29a1b15
pollme/settings.py
@@ -44,6 +44,7 @@
44
45
AUTHENTICATION_BACKENDS = (
46
'social_core.backends.google.GoogleOAuth2',
47
+ 'social_core.backends.linkedin.LinkedinOAuth2',
48
'django.contrib.auth.backends.ModelBackend',
49
)
50
@@ -134,5 +135,8 @@
134
135
136
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = 'your-client-id'
137
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET ='your-client-secret'
138
+SOCIAL_AUTH_LINKEDIN_OAUTH2_KEY = 'your-client-id'
139
+SOCIAL_AUTH_LINKEDIN_OAUTH2_SECRET = 'your-client-secret'
140
+
141
SOCIAL_AUTH_URL_NAMESPACE = 'social'
142
SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/polls/list/user/'
0 commit comments