generated from mwc/lab_riddles
I completed checkpointt 1.
I pulled 5 lines from the request and response and tried to infer what they meant. I will address the questions after the next checkpoint!
This commit is contained in:
parent
70af751494
commit
0996a2cf0d
15
notes.md
15
notes.md
|
@ -7,6 +7,21 @@ about the meaning of the line, and some situation in which it might be useful.
|
|||
You are welcome to research the meanings of these headers, but it's also
|
||||
fine to speculate for now.
|
||||
|
||||
Host: riddles.makingwithcode.org
|
||||
I think this is the server that information is being pulled from.
|
||||
|
||||
Content-Length: 2073
|
||||
I think this is the number of characters in the response.
|
||||
|
||||
Date: Fri, 26 Apr 2024 12:10:26 GMT
|
||||
I think this is the date the request was made.
|
||||
|
||||
Server: nginx/1.22.0 (Ubuntu)
|
||||
I'm not sure what the nginx/1.22.0 means, but I know Ubuntu is an operating system. Maybe this is to specify a type of server or what operating system is server is running?
|
||||
|
||||
"riddles": [
|
||||
This looks like the response provided a dictionary?
|
||||
|
||||
## Checkpoint 2
|
||||
The goal of this checkpoint is to see what status codes you can get back from
|
||||
the riddle server. Paste below several `http` requests and the status codes
|
||||
|
|
Loading…
Reference in New Issue