In RESTful style programming, we should use HTTP methods as our building blocks. I’m a little confused though which methods match up to the classic CRUD methods. GET/Read and...
What’s the difference when using GET or POST method? Which one is more secure? What are (dis)advantages of each of them? (similar question) 14 Answers 14
I want to design my rest endpoint with the appropriate method for the following scenario. There is a group. Each group has a status. The group can be activated...
This question already has answers here: When should I use GET or POST method? What’s the difference between them? (14 answers) Closed 8 years ago. I’ve only recently been...
First of all, some definitions: PUT is defined in Section 9.6 RFC 2616: The PUT method requests that the enclosed entity be stored under the supplied Request-URI. If the...