Reputation: 391
I'm trying to limit access to a Django view for a unique user, but shouldn't require the user to register. The use case is a link would be sent to a customer to view a page with private information that only he/she can see, but doesn't require them to register with the site. I'm thinking using some type of token might be the way to go but I'm not sure. What is the best way to solve this?
Upvotes: 0
Views: 46
Reputation: 2882
Here is typically how such a use case is implemented:
Upvotes: 2