Using django-socialregistration, got following error:
'AnonymousUser' object has no attribute 'backend'
How,
- I click on facebook connect url.
- That took me Facebook and ask me to login. So I did, asked permission, I granted.
- After that it redirect me to my site. And ask to setup. I provide user and email address.
- Once I submit, got error like above:
Trace point:
path/to_file/socialregistration/views.py in post
128. self.login(request, user)
Do anybody know, what's wrong?
AnonymousUser
class does not havebackend
attribute. This is what is wrong. – Tadeck