Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Namespace Error on django-social-auth

Tags:

django

I've added django-social-auth in my django project from the instructions on this page https://github.com/omab/django-social-auth but when I accesed /login/google/ I encountered an error: NoReverseMatch at /login/google/ 'namespace' is not a registered namespace.

What does it means?

like image 760
Ronnie Beltran Avatar asked Jan 08 '11 16:01

Ronnie Beltran


1 Answers

My guess is that you copy-pasted sample code using "namespace" and didn't replace it by any namespace declared in your app.

If you are not familiar with namespaces, I'd recommend for a first trial to try and make it work without using them.

like image 180
Carles Barrobés Avatar answered Sep 21 '22 21:09

Carles Barrobés