http-messages-recap Flashcards
What is a client?
HTTP client is a client that is able to send a request to and get a response from the server in HTTP format.
What is a server?
Provides serves to client
Which HTTP method does a browser issue to a web server when you visit a URL?GET
GET
What is on the first line of an HTTP request message?
The start line of an HTTP response, called the status line, contains the following information: The protocol version, usually HTTP/1.1 . A status code, indicating success or failure of the request
What is on the first line of an HTTP response message?
The status line is the first line in the response message. It consists of three items: The HTTP version number, status code, and the status text
What are HTTP headers?
let the client and the server pass additional information with an HTTP request or response (Meta information)
Is a body required for a valid HTTP message?