我已经安装了Django-allauth,并仔细遵循每一步:
Settings.py
TEMPLATE_CONTEXT_PROCESSORS = (
"django.contrib.auth.context_processors.auth",
'django.core.context_processors.request',
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"django.core.context_processors.static",
"django.core.context_processors.tz",
"django.contrib.messages.context_processors.messages",
"allauth.account.context_processors.account",
"allauth.socialaccount.context_processors.socialaccount",
)
AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
"allauth.account.auth_backends.AuthenticationBackend",
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.google',
...
)
ACCOUNT_AUTHENTICATION_METHOD="username_email"
url.py
(r'^accounts/', include('allauth.urls')),
但是在运行时我会在http://localhost:8000/accounts/
我试图手动反向匹配:
./manage.py shell
from allauth.socialaccount.providers.google.urls import *
工作正常。
./manage.py shell
from django.core.urlresolvers import reverse
reverse('/accounts/google/login/')
但是这个失败了:
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/home/kave/vc/cb-env/local/lib/python2.7/site-packages/django/core/urlresolvers.py", line 476, in reverse
return iri_to_uri(resolver._reverse_with_prefix(view, prefix, *args, **kwargs))
File "/home/kave/vc/cb-env/local/lib/python2.7/site-packages/django/core/urlresolvers.py", line 396, in _reverse_with_prefix
"arguments '%s' not found." % (lookup_view_s, args, kwargs))
NoReverseMatch: Reverse for '/accounts/google/login/' with arguments '()' and keyword arguments '{}' not found.
我已经在virtual-env中正确安装了它。什么可能出错?或者这是一个错误?
答案 0 :(得分:3)
当您使用反向时,您应该传递视图名称,而不是视图URL。对于谷歌来说,这将是相反的(“google_login”)。这解释了你的NoReverseMatch
但是我仍然在http://localhost:8000/accounts/得到404,知道可能出现什么问题?
/accounts/
根本不是有效的网址,因此404是正确的。使用/accounts/login/
答案 1 :(得分:0)
Allauth url 名称如下: account_login, account_logout, account_change_password, ..