Logout with django-social-auth

前端 未结 3 808
被撕碎了的回忆
被撕碎了的回忆 2020-12-31 18:36

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

3条回答
  •  孤城傲影
    2020-12-31 19:28

    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.
    

提交回复
热议问题