I searched and found no solution to the following problem:
How do I track requests in a given REST service?
For example, if I have a blog in which I access my services (insert post, remove post, update post, for example) as follows localhost:80/post/insert/id=1
via application, and if I type this in the browser without making a request via application, I will perform the insertion in the same way. My question is:
How can I ensure that my REST services only respond to my application?