Login
Remember
Register
Ask a Question
What are the core components of an HTTP request?
+1
vote
asked
May 19, 2021
in
POSTMAN
by
rajeshsharma
What are the core components of an HTTP request?
http-request
postman
core-component
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 19, 2021
by
rajeshsharma
An HTTP request includes five key elements:
HTTP methods – Set of request methods to perform desired action for a given resource (GET, PUT, POST, DELETE)
Uniform Resource Identifier (URI) – Describes the resource
HTTP Version, (example- HTTP v1.1)
Request Headers, (example- Content-type : application/json, Content-Length : 511)
Payload – It is basically a Request Body which includes message content.
...