In django I want to delete a cookie or set it to null what is the method to do that in views.
Asked
Active
Viewed 1,149 times
-1
-
https://stackoverflow.com/questions/14401398/how-to-clear-cookies-using-django – badiya Jul 18 '17 at 09:35
1 Answers
0
You can do:
response.delete_cookie('cookie_name', domain="cookie_domain")
return response
More details here: https://docs.djangoproject.com/en/1.10/ref/request-response/#django.http.HttpResponse.delete_cookie

yusuf.oguntola
- 492
- 3
- 10