Types of HTTP Methods
1.GET - Requests some data from a server.
2.PUT - Updates a resource on the server.
3.PATCH - Updates a resource on the server partially.
4.CONNECT - Establishes a tunnel to the server.
5.TRACE - Establishes a tunnel to the server.
6.POST - Submits a new resource to a server.
7.DELETE - Deletes a resource on the server.
8.HEAD - Same as GET, but doesn't request for a response body.
9.OPTION - Describes the communication for the target resource.
No comments: