Is there a way to make GET/Post data usable only once on first instance? I’m using GET data to check success of a comment and do some actions and display certain messages. But I don’t want this actions to be repeatable on refresh of a browser. What can I do?
Share
No, but you can add a unique token to the data and reject it on the server side if the token is already used.