http-messages Flashcards
What is a client?
The service requesters
What is a server?
A software application that provides a response to the request
Which HTTP method does a browser issue to a web server when you visit a URL?
HTTP Get
What three things are on the start-line of an HTTP request message?
- method
- target
- version of http
What three things are on the start-line of an HTTP response message?
- version
- status text
- status code
What are HTTP headers?
HTTP headers from a request follow the same basic structure of an HTTP header: a case-insensitive string followed by a colon (‘:’) and a value whose structure depends upon the header. The whole header, including the value, consist of one single line, which can be quite long.
-https://developer.mozilla.org/en-US/docs/Web/HTTP/Messages
Where would you go if you wanted to learn more about a specific HTTP Header?
MDN
Is a body required for a valid HTTP request or response message?
No