(or HyperText Transfer Protocol)
(or Representational State Transfer)
(or application programming interface)
1 POST /codecademy/learn-http HTTP/1.1
2 Host: www.codecademy.com
3 Content-Type: text/html; charset=UTF-8
4
5 Name=Andrei&Age=28
The Response structure mirrors that of the Request. It contains:
1 HTTP/1.1 200 OK
2 Content-Type: text/xml; charset=UTF-8
3 <?xml version="1.0" encoding="utf-8"?>
4 <string xmlns="http://www.awesomeSite.com/">
5 Hello World!
6 </string>
{
"pets": {
"name": "Jeffrey",
"species": "Giraffe"
}
}
(or JavaScript Object Notation)