Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have installed Django-allauth and followed every step carefully:

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')),

However when running it I get a 404 at http://localhost:8000/accounts/

I tried to reverse match it manually:

./manage.py shell
from allauth.socialaccount.providers.google.urls import *

Works ok.

./manage.py shell
from django.core.urlresolvers import reverse
reverse('/accounts/google/login/')

However this one fails:

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.

I have installed it correctly inside the virtual-env. What could have gone wrong? Or is that a bug?

share|improve this question
1  
When you use reverse you should be passing along the view name, not the view url. In case of Google, that would be reverse("google_login"). That explains your NoReverseMatch. – pennersr Feb 12 at 23:37
Thanks. you are right on this. However I still get 404 at http://localhost:8000/accounts/ any idea what could be wrong? – Kave Feb 12 at 23:42

1 Answer

up vote 1 down vote accepted

/accounts/ is simply not a valid URL, so the 404 is correct. Use /accounts/login/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.