[Fixed]-How to capture the session key for an anonymous user (django 1.6)

9👍

So, after I started reading through the source code I found myself on the global_settings.py file and found this gem:

SESSION_SAVE_EVERY_REQUEST = True

When I added that to the settings.py file my problems were solved. AnonymousUsers got a session_key. Yipee!

Leave a comment