Login
Remember
Register
Ask a Question
State The Core Components of an HTTP Response?
+1
vote
asked
May 19, 2021
in
POSTMAN
by
rajeshsharma
State The Core Components of an HTTP Response?
http-response
http-request
http-component
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 19, 2021
by
rajeshsharma
Every HTTP response contains four key elements.
Status/Response Code – These are response codes issued by a server to a client’s request. For example, 404 means Page Not Found, and 200 means Response is OK.
HTTP Version – describes HTTP version, for example-HTTP v1.1.
Response Header – Includes information for the HTTP response message. For example, Content-type, Content-length, date, status and server type.
Response Body – It contains the data that was requested by a client to server.
...