InterviewSolution
Saved Bookmarks
| 1. |
What are the HTTP Methods? |
|
Answer» HTTP METHODS are also KNOWN as HTTP Verbs. They form a major PORTION of uniform interface restriction followed by the REST that SPECIFIES what action has to be followed to get the requested resource. Below are some examples of HTTP Methods:
The POST, GET, PUT, DELETE corresponds to the create, read, update, delete operations which are most commonly called CRUD Operations. GET, HEAD, OPTIONS are safe and idempotent methods WHEREAS PUT and DELETE methods are only idempotent. POST and PATCH methods are neither safe nor idempotent. |
|