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
, it doesn't log out.
What's the way to logout?
Thanks.
Are you trying to log out just from the Django app or do you want to "forget" the Twitter access? Usually the twitter auth token is stored for simplified login the next time a user wants to connect to twitter, so the user doesn't have to "accept" the access again.
If you just want to logout from the Django auth system, it should be enough to use the django.contrib.auth.views.logout
view or to create a custom logout view.
To completely unlink/disconnect a social account, you need to use the disconnect functions in social-auth. You can get the disconnect url using the following template tag:
{% url "socialauth_disconnect" "backend-name" %}
For more information, please refer to http://django-social-auth.readthedocs.org/en/v0.7.22/configuration.html#linking-in-your-templates.
Because you've already allowed your app access to the OAuth provider, the auth provider will remember that decision. There are usually two ways to force a confirmation of that access permission:
{'approval_prompt': 'force'}
to the GOOGLE_OAUTH2_AUTH_EXTRA_ARGUMENTS
setting.