我正在努力在我的应用程序上设置 django-social-auth。每当我在这里点击 http://<* 域 *>/social/login/twitter/ 时,我都会收到一个错误页面,上面写着“身份验证服务“twitter”不正确”,但“WrongBackend”除外。
这是我的settings.py:
INSTALLED_APPS = (
'django.contrib.auth',
<* omitted code *>
'social_auth',
)
AUTHENTICATION_BACKENDS = (
'social_auth.backends.twitter.TwitterBackend',
'django.contrib.auth.backends.ModelBackend',
)
TEMPLATE_CONTEXT_PROCESSORS = (
"django.contrib.auth.context_processors.auth",
<* omitted code *>
'social_auth.context_processors.social_auth_by_type_backends',
'social_auth.context_processors.social_auth_login_redirect',
)
LOGIN_URL = '/auth/login/'
LOGIN_REDIRECT_URL = '/account/'
LOGIN_ERROR_URL = '/auth/login/error/'
TWITTER_CONSUMER_KEY = '<* omitted code *>'
TWITTER_CONSUMER_SECRET = '<* omitted code *>'
和我的网址
urlpatterns = patterns('',
<* omitted code *>
url(r'social/', include('social_auth.urls')),
)
我在这个上遗漏了什么明显的东西吗?