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: 261
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