1.

What Is Http Methods?

Answer»

The list of HTTP methods which operate on the resources are as FOLLOWS:

  1. HEAD: Retrieves the resource METADATA.
  2. GET: Retrieves the resource metadata and content.
  3. POST: Requests the server to create a new resource using the data enclosed in the REQUEST body.
  4. PUT: Requests the server to replace an existing resource with the one enclosed in the request body.
  5. DELETE: Requests the server to remove the resource identified by that URI.
  6. OPTIONS: Requests the server to return DETAILS about capabilities either globally or specifically towards a resource.

The list of HTTP methods which operate on the resources are as follows:



Discussion

No Comment Found