标签:server text cte tag 怎么 rbo 就是 value vat
https://curl.haxx.se/
帮助
# 这个命令如果能运行, 说明 机器上确实有 curl
# 具体内容不少, 建议在对 curl 有一定认知之后, 再去尝试阅读
> curl --help
命令
# curl 访问 url 的时候, 建议带上协议
# 如果不带的话, 默认是 http
> curl 'http://www.baidu.com'
返回
# 勉强对齐了一下
# 结果类似一个表格, 前两行是表头, 最后一行, 是结果
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2381 100 2381 0 0 50659 0 --:--:-- --:--:-- --:--:-- 50659
# 后面是 baidu 的html, 就不列举了
如果不想要这个统计信息, 可以使用 以下命令
> curl -s 'http://www.baidu.com'
命令
> curl -v 'http://www.baidu.com'
返回
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 61.135.169.121...
* TCP_NODELAY set
* Connected to www.baidu.com (61.135.169.121) port 80 (#0)
# 这一部分, 是 请求
> GET / HTTP/1.1
> Host: www.baidu.com
> User-Agent: curl/7.63.0
> Accept: */*
>
# 这一部分, 是响应
< 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: Fri, 16 Aug 2019 12:48:41 GMT
< Etag: "588604c4-94d"
< Last-Modified: Mon, 23 Jan 2017 13:27:32 GMT
< Pragma: no-cache
< Server: bfe/1.0.8.18
< Set-Cookie: BDORZ=27315; max-age=86400; domain=.baidu.com; path=/
<
{ [2381 bytes data]
100 2381 100 2381 0 0 74406 0 --:--:-- --:--:-- --:--:-- 74406
# 这一行, 是请求页面的内容, 略
# 这一行是啥, 我也不太清楚了
* Connection #0 to host www.baidu.com left intact
则可以使用以下命令
> curl -i 'http://www.baidu.com'
命令
> curl -vs -X GET 'http://www.baidu.com'
命令
> curl -is -X GET -H 'Content-Type: text/html' 'http://www.baidu.com'
命令
> curl -vs -X GET -H 'Content-Type: text/html' -d '{"key": "value"}' 'http://www.baidu.com'
curl使用指南
https://www.jianshu.com/p/fc0eb6c60816
官网上有本书, 叫做 everything-curl, 写的很详细, 但都是英文.
标签:server text cte tag 怎么 rbo 就是 value vat
原文地址:https://www.cnblogs.com/xy14/p/11366565.html