Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I redirect the user to the home page after logout. In between I would like to delete all/or specific client cookies (I have previously set).

def logoutuser(request):
  logout(request)
  return redirect('app.home.views.home')

To call response.delete_cookie('user_location'), there is no response object. How do I do this?

share|improve this question

2 Answers

up vote 10 down vote accepted

Like jobscry said, logout() cleans session data, but it looks like you have set your own cookies too.

You could wrap auth logout view, which will return an HttpResponse:

def logout_user(request):
     response = logout(request, next_page=reverse('app.home.views.home'))
     response.delete_cookie('user_location')
     return response

Or if you're just using the logout method as opposed to the view, you can use the return value for the redirect() method you have [which I assume returns an HttpResponse too].

def logout_user(request):
     logout(request)
     response = redirect('app.home.views.home')
     response.delete_cookie('user_location')
     return response
share|improve this answer
Thanks your suggestion worked..!! – Ramya Aug 14 '09 at 13:15
1  
N.B. "Due to the way cookies work, path and domain should be the same values you used in set_cookie() -- otherwise the cookie may not be deleted." docs.djangoproject.com/en/1.3/ref/request-response/… – Matt Ball Sep 1 '12 at 5:06

according to http://docs.djangoproject.com/en/dev/topics/auth/#django.contrib.auth.logout

Changed in Django 1.0: Calling logout() now cleans session data.

share|improve this answer
1  
Seems to delete the session data, but not client cookie. I am using Django 1.1 – Ramya Aug 14 '09 at 13:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.