29 lines
664 B
Python
29 lines
664 B
Python
from allauth.socialaccount.providers.base import ProviderAccount
|
|
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
|
|
|
|
|
|
class TwentyThreeAndMeAccount(ProviderAccount):
|
|
pass
|
|
|
|
|
|
class TwentyThreeAndMeProvider(OAuth2Provider):
|
|
id = "twentythreeandme"
|
|
slug = "23andme"
|
|
name = "23andMe"
|
|
account_class = TwentyThreeAndMeAccount
|
|
|
|
def extract_uid(self, data):
|
|
return data["id"]
|
|
|
|
def get_default_scope(self):
|
|
scope = ["basic"]
|
|
return scope
|
|
|
|
def extract_common_fields(self, data):
|
|
return dict(
|
|
email=data.get("email"),
|
|
)
|
|
|
|
|
|
provider_classes = [TwentyThreeAndMeProvider]
|