We have an Angular site that is public and a REST WEB API that is public. The site is for all users. How do I stop users from finding out the REST POST calls and submitting them through something like Fiddler ?
My thought is the CORS will restrict what IP address can call the methods right? So is that the answer ? Or can users spoof the IP and still call the WEB API ?
Edit 1: Can someone tell me why CORS is not the answer? As I understand it would restrict the request to only the server the angular application is on right? Which would then not allow the users actually browser to make request? right?