How would I prevent users from spamming a post request? For example, a form is submitted via Ajax post. Using firebug I can see the post request, but I noticed that this request can be easily repeated by right clicking on it and selecting “open in a new tab” How can I prevent something like this?
Share
Any web form can be posted to in any number of ways. What you need to do is make sure the server-side script that processes the form has the logic needed to “ignore” spammy requests.