Self Authenticating Links in Django

Posted by awolf on Stack Overflow See other posts from Stack Overflow or by awolf
Published on 2010-04-16T02:25:36Z Indexed on 2010/04/16 2:33 UTC
Read the original article Hit count: 237

Filed under:
|
|

In my web app I would like to be able to email self-authenticating links to users. These links will contain a unique token (uuid). When they click the link the token being present in the query string will be enough to authenticate them and they won't have to enter their username and password.

What's the best way to do this?

© Stack Overflow or respective owner

Related posts about django

Related posts about python