Logout with python-social-auth
Asked Answered
J

4

9

I am dabbling a little with Python 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.

Janus answered 25/1, 2013 at 20:25 Comment(4)
can you post you logout code?Parishioner
I am having the same issue :/Casimiracasimire
Are you trying to logout from Twitter too? That won't be possible without using any SDK from Twitter since logging out from a third party site implies messing with their cookies, so you need some JS from the same domain to mess with them.Gallipot
I'm trying to accomplish this myself and running into the same issue. While a Django logout function may well work to log the person out of the Django app, it doesn't matter much if when someone goes to the site again they're accepted right back in due to the auth token still being around. So I guess the question is how to destroy that auth token from the browser via a logout type command? Otherwise, in situations where someone logs in from a shared computer of some sort, there doesn't appear to be any way for them to not remain logged in or authenticated.Capsize
S
9

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.

Django logout

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.

Social auth disconnect

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.

Force approval prompt

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:

  • Revoke the access permission in the management console of your auth provider (e.g. disapprove twitter app access).
  • Set an extra OAuth argument that forces the approval prompt. I'm not sure if Twitter provides such a thing, but if you're using Google OAuth2 you can simply add {'approval_prompt': 'force'} to the GOOGLE_OAUTH2_AUTH_EXTRA_ARGUMENTS setting.
Sorrento answered 19/4, 2013 at 15:17 Comment(0)
P
6

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.
Parishioner answered 25/1, 2013 at 22:44 Comment(1)
I have a logout view, and this is what I exactly did. But it won't log out from twitter.Janus
B
4

This answer is outdated as django-social-auth is now python-social-auth

See newer Stack Overflow answer here.

Read the docs here

Biagi answered 21/3, 2014 at 19:28 Comment(0)
C
0

According to the documentation there is a difference between log out and disconnect. In short,

  • Disconnect - forget the user social account.
  • Log out - end the current user session and remove any related data (like cookies).

From the question, I assume you still want to allow the user to have the Twitter linked with the account. If you want to disconnect, check this answer.

To log the user out, you can have in your Django settings.py

LOGOUT_URL = "logout"

Then, in your urls.py

from django.urls import path
from django.contrib.auth import views as auth_views

urlpatterns = [
    path("logout/", auth_views.LogoutView.as_view(template_name="registration/logged_out.html"), name="logout"),
]

Then, to log the user out, you can just use in the template something like

<a href="{% url 'logout' %}">Logout</a>

Also, you'll have to create a the logged_out.html file in appname/templates/registration/ and include in it whatever you want the logged out user to see.

Customary answered 30/12, 2022 at 13:36 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.