HTTP请求
> GET / HTTP/1.1
> Host: www.baidu.com
> User-Agent: curl/7.54.0
> Accept: */*
HTTP请求中包含了以下内容:
- 指定了http方法、目录以及http版本号
- 指定了主机
- 显示客户端发起请求的软件
- 指定了客户端可接受的MIME类型
使用chrome查看请求头
首先右击页面点击检查,接着在地址栏中输入地址,之后按照图示操作,注意view parsed
是点击view source
之后显示的内容
HTTP响应
< HTTP/1.1 200 OK
< Accept-Ranges: bytes
< Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
< Connection: Keep-Alive
< Content-Length: 2381
< Content-Type: text/html
< Date: Wed, 18 Jul 2018 13:51:57 GMT
< Etag: "58860505-94d"
< Last-Modified: Mon, 23 Jan 2017 13:28:37 GMT
< Pragma: no-cache
< Server: bfe/1.0.8.18
< Set-Cookie: BDORZ=27315; max-age=86400; domain=.baidu.com; path=/
HTTP响应中包含以下内容:
- http版本号,状态码
- 内容长度
- 内容类型
- 响应的具体内容(HTML页面)
使用chrome查看响应头
步骤基本和查看请求相同
-
查看响应头部
16971954-2625-4B56-92FC-F6EA66C94239.png -
查看响应的具体内容
41085597-8CEB-4E8C-B105-CC1EBC007FD9.png
curl常见用法
curl -s -v -H "Frank: xxx" -- "https://www.baidu.com"
- -s不显示进度条
- -v同时显示请求和响应
- -H 增加请求头部中的内容
curl -X POST -d "1234567890" -s -v -H "Frank: xxx" -- "https://www.baidu.com"
- -X指定http方法
- -d指定post的内容
网友评论