django-allauthのインストールが完了しました。すべてのソーシャルプロバイダーのテンプレートページに移動すると、次のメッセージが表示されます。
AttributeError at /account/facebook/login/
'tuple' object has no attribute 'get'
settings.social_account_providers
SOCIALACCOUNT_PROVIDERS = (
{'facebook':
{'SCOPE': ['email', 'publish_stream'],
'FB_LOGIN': {'auth_type': 'reauthenticate'},
'METHOD': 'js_sdk'}},
{ 'twitter':
{ 'SCOPE': ['r_emailaddress'] } },
{ 'google':
{ 'SCOPE': ['https://www.googleapis.com/auth/userinfo.profile']}},
{ 'linkedin':
{ 'SCOPE': ['r_emailaddress'] }}
)。
html
<a method="js_sdk" href="{% provider_login_url "Facebook" %}"></a>