HTTP
HTTP(hypertext transport protocol)协议『超文本传输协议』,协议详细规定了浏览器和万维网服务器之间互相通信的规则
请求报文
重点是格式与参数:
行:POST /s?ie=utf–8 HTTP/1.1
头:
HOST: atguigu.com
Cookie: name=guigu
Content-type: application/x-www-form-urlencoded
User-Agent: chrome 83
空行:
体:username=admin&password=admin
响应报文
格式与参数:
行: HTTP/1.1 200(响应状态码,有404,403,401,500,200等) OK(响应状态字符串)
头:
Content-Type: text/html;charset=utf-8
Content-length: 2048
Content-encoding: gzip
空行
体:
<html> <head> </head> <body> </body> </html>