0
I need to email a secure link so that the user at the click can access an Edit action in the controller. For example:
Sending the link: localhost:64148/Movies/Edit? id=4
However I cannot send the link this way, because when the user accesses it, will not be allowed due to the use of [ValidateAntiForgeryToken]
How do I send a secure link in this case? How do I deal with the token?