Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在向用户发送电子邮件中的超链接。如果用户仅单击该超链接一次。如果他第二次单击该超链接,它应该过期。
提前致谢
您需要在每个链接中具有唯一标识符,并将标识符存储在服务器端,通常在数据库中。然后在每个请求中,您需要:
明智的做法是使用 GUID 或添加一些带有哈希的附加参数,以防止用户猜测其他标识符(也取决于您的用例)。