HTTP-Messages Flashcards
What is a client?
A client is a piece of computer hardware or software that accesses a service made available by a server
What is a server?
In computing, a server is a piece of computer software (computer program) that provides functionality for other programs or devices, called “clients”
Which HTTP method does a browser issue to a web server when you visit a URL?
the GET http method
What three things are on the start-line of an HTTP request message?
An HTTP Method, the request target, the HTTP version
What three things are on the start-line of an HTTP response message?
the protocol version, status code, and status text
What are HTTP headers?
HTTP headers let the client and the server pass additional information with an HTTP request or response
Where would you go if you wanted to learn more about a specific HTTP Header?
MDN Docs
Is a body required for a valid HTTP request or response message?
No and it depends on what type of http method you use in your request.