Search code examples
pythondjangodjango-middlewaredjango-sessions

Django: retrieve session or cookies in middleware


can i get the current session or cookie inside a middleware?

I tried but I got:

'WSGIRequest' object has no attribute 'session'

Solution

  • This will work in any middleware that comes after django.contrib.sessions.middleware.SessionMiddleware in settings.py.