HTTP Requests and HTTP Response
In this lesson, we will walk you through the concepts of HTTP request and response.
We'll cover the following...
What is an HTTP
request?
HTTP
requests are the messages sent by the client to initiate an action on a resource identified by a given URL over the network. There are various HTTP
request methods for specific purposes.
The components of an HTTP
request are as below:
-
The method to be applied to the resource – an
HTTP
method (likeGET
,PUT
,POST
HEAD
orOPTIONS
), that describes the action to be performed. We have already discussed the variousHTTP
methods in the previous ...