Describe HTTP Request Contains How Many Parts Explain Them

Asked By 20 points N/A Posted on -
qa-featured

How many parts are there in an HTTP request? Can anyone please give a brief introduction of every part?

SHARE
Answered By 20 points N/A #287720

Describe HTTP Request Contains How Many Parts Explain Them

qa-featured

An HTTP request contain these blocks

q12
  1. Request method: This method used to pass the client requirements to the server.
  2.   A) OPTIONS: Tells about the option available after the requirement is received.
  3. B) GET A method to retrieve the available information.
  4. C)  HEAD: This method is similar to GET, except it pass the source information too.

There are many more methods available.

  1. URI: Stands for Uniform Resource Indicator. It provides the address of requested document.
  2. Header fields:  Used to provide additional information about the data requested.
  3. Body: Sores the data transition of method header.

Related Questions