I am dabbling a little with django-social-auth using twitter authentication.
I can login.
But, when I try to log out using django.contrib.auth.logout>
django.contrib.auth.logout>
Do you have a logout view? You need to have a logout view.
Example:
from django.contrib.auth import logout def logout_view(request): logout(request) # Redirect to a success page.