mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-10 19:26:35 +03:00
Merge pull request #283 from DigiCred/master
fix: social login using auth code flow
This commit is contained in:
commit
f09bbaf877
|
@ -63,11 +63,11 @@ class SocialLoginSerializer(serializers.Serializer):
|
|||
# http://stackoverflow.com/questions/8666316/facebook-oauth-2-0-code-and-token
|
||||
|
||||
# Case 1: We received the access_token
|
||||
if 'access_token' in attrs:
|
||||
if attrs.get('access_token'):
|
||||
access_token = attrs.get('access_token')
|
||||
|
||||
# Case 2: We received the authorization code
|
||||
elif 'code' in attrs:
|
||||
elif attrs.get('code'):
|
||||
self.callback_url = getattr(view, 'callback_url', None)
|
||||
self.client_class = getattr(view, 'client_class', None)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user