Django-allauth Keine Facebook-App konfiguriert: Fügen Sie über den Django-Administrator eine SocialApp hinzu

Ich versuche mich einzurichtenDjango-Allauth in meinem Projekt. Ich habe diesen Fehler festgestellt und kann ihn nicht beheben.

Umgebung:

Request Method: GET Request URL: `http://localhost:8000/accounts/login/`

Django Version: 1.4.2 Python Version: 2.7.3 
Installed Applications:
('django.contrib.auth',  
'django.contrib.contenttypes', 
'django.contrib.sessions',  
'django.contrib.sites', 
'django.contrib.messages',  
'django.contrib.staticfiles',  
'core', 
'allauth',  
'allauth.account',  
'allauth.socialaccount', 
'allauth.socialaccount.providers.facebook', 
'allauth.socialaccount.providers.twitter',  
'django.contrib.admin', 
'django.contrib.admindocs') 

Installierte Middleware:

('django.middleware.common.CommonMiddleware', 
'django.contrib.sessions.middleware.SessionMiddleware', 
'django.middleware.csrf.CsrfViewMiddleware', 
'django.contrib.auth.middleware.AuthenticationMiddleware', 
'django.contrib.messages.middleware.MessageMiddleware')


Template error: In template
/media/Dump/Sites/wtr/allauth/templates/socialaccount/snippets/login_extra.html,
error at line 3    No Facebook app configured: please add a SocialApp
using the Django admin    

       1 : {% load socialaccount %}
       2 : 
       3 :  {% providers_media_js %} 
       4 : 
       5 :

Ich habe tatsächlich eine Facebook-App in Django Admin konfiguriert, kann aber nicht verstehen, warum es diese Ausnahme gibt.

 Exception Type: ImproperlyConfigured at /accounts/login/ Exception
 Value: No Facebook app configured: please add a SocialApp using the
 Django admin
Ich habe Allauth Apps hinzugefügtINSTALLED_APPLICATIONSFügte hinzu, dassTEMPLATE_CONTEXT_PROCESSORS RahmenEinstellung bearbeitet,AUTHENTICATION_BACKENDSHinzugefügtallauth urls inurls.py

Ist das alles, was getan werden muss, oder gibt es noch mehr? Wenn ja, können Sie mich bitte auf die relevanten Dokumente verweisen?

Antworten auf die Frage(6)

Ihre Antwort auf die Frage