I need to have a function tell me if a django session id is currently authenticated or not. I understand this is already built into django and I have that working just fine.
But I have an external app that gets passed a session id, and when it passes the session id string back to django I need to validate that this session id is valid and currently authenticated.
Where do I start for reusing some of the built-in functions django 1.2 has?
Thanks