There are a number of different HTTP methods, but the four that will likely be used the most in designing RESTful services are:
PUT
GET
POST
DELETE
It's easy to assume that each of these methods maps cleanly (one-to-one) to the CRUD operations common in programming (Create, Retrieve, Update, Delete) but that's not always the case for reasons that become clear when studying the HTTP RFC.
A
Recent comments