HTTP Flashcards
HTTP Messages:
What is a client?
service requesters
HTTP Messages:
What is a server?
providers of a resource or service
HTTP Messages:
Which HTTP method does a browser issue to a web server when you visit a URL?
get
HTTP Messages:
What three things are on the start-line of an HTTP request message?
a HTTP method (get, put, post)
a request target (a URL, path you’re sending to)
the HTTP version
HTTP Messages:
What three things are on the start-line of an HTTP response message?
The protocol version (usually HTTP 1.1)
A status code
A status text
HTTP Messages:
What are HTTP headers?
a way to give additional data about the message you’re currently sending
HTTP Messages:
Where would you go if you wanted to learn more about a specific HTTP header?
MDN
HTTP Messages:
Is a body required for a valid HTTP request or response message?
no