HTTP request报文结构是怎样的
作者:互联网
- 首行是
Request-Line
包括:请求方法,请求URI
,协议版本,CRLF
- 首行之后是若干行请求头,包括
general-header
,request-header
或者entity-header
,每个一行以CRLF
结束 - 请求头和消息实体之间有一个
CRLF
分隔 - 根据实际请求需要可能包含一个消息实体 一个请求报文例子如下:
GET /Protocols/rfc2616/rfc2616-sec5.html HTTP/1.1
Host: www.w3.org
Connection: keep-alive
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36
Referer: https://www.google.com.hk/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: zh-CN,zh;q=0.8,en;q=0.6
Cookie: authorstyle=yes
If-None-Match: "2cc8-3e3073913b100"
If-Modified-Since: Wed, 01 Sep 2004 13:24:52 GMT
name=qiu&age=25
标签:xml,www,HTTP,请求,报文,request,Accept,header,CRLF 来源: https://blog.csdn.net/LuckXinXin/article/details/112971096