Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
9a1687ab
Commit
9a1687ab
authored
10 years ago
by
David Ormsbee
Committed by
Julia Hansbrough
10 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Facebook auth support.
parent
b371783e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletions
+21
-1
common/djangoapps/third_party_auth/provider.py
+21
-1
No files found.
common/djangoapps/third_party_auth/provider.py
View file @
9a1687ab
...
...
@@ -4,7 +4,7 @@ Loaded by Django's settings mechanism. Consequently, this module must not
invoke the Django armature.
"""
from
social.backends
import
google
,
linkedin
from
social.backends
import
google
,
linkedin
,
facebook
_DEFAULT_ICON_CLASS
=
'icon-signin'
...
...
@@ -150,6 +150,26 @@ class LinkedInOauth2(BaseProvider):
return
provider_details
.
get
(
'fullname'
)
class
FacebookOauth2
(
BaseProvider
):
"""Provider for LinkedIn's Oauth2 auth system."""
BACKEND_CLASS
=
facebook
.
FacebookOAuth2
ICON_CLASS
=
'icon-facebook'
NAME
=
'Facebook'
SETTINGS
=
{
'SOCIAL_AUTH_FACEBOOK_KEY'
:
None
,
'SOCIAL_AUTH_FACEBOOK_SECRET'
:
None
,
}
@classmethod
def
get_email
(
cls
,
provider_details
):
return
provider_details
.
get
(
'email'
)
@classmethod
def
get_name
(
cls
,
provider_details
):
return
provider_details
.
get
(
'fullname'
)
class
Registry
(
object
):
"""Singleton registry of third-party auth providers.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment