1. 显示事务
// 显示响应头和响应体
curl -i www.baidu.com
// 只显示响应头
curl -I www.baidu.com
// 显示请求头 和 响应报文(头和体)
curl -v www.baidu.com
// 记录更详细的事务(可以看到请求体)
curl --trace output www.baidu.com
curl --trace-ascii output www.baidu.com
2. 发送表单信息
// 用GET方法
curl www.baidu.com/search?q=aaa
// -G参数用来构造url,若没有-G,则会发送POST请求
// 下面请求的url为 https://google.com/search?q=kitties&count=20
curl -G -d 'q=kitties' -d 'count=20' https://google.com/search
// 构造url编码的url
curl -G --data-urlencode 'comment=hello world' https://www.example.com
// 用POST方法
curl -X POST --data "q=aa" www.baidu.com/search
// -d 指定请求体
curl -d'login=emma&password=123'-X POST https://google.com/login
curl -d 'login=emma' -d 'password=123' -X POST https://google.com/login
// 使用-d参数以后,HTTP 请求会自动加上标头Content-Type : application/x-www-form-urlencoded。并且会自动将请求转为 POST 方法,因此可以省略-X POST
// 读取本地文本文件的数据,向服务器发送。
curl -d '@data.txt' https://google.com/login
// --data-urlencode参数等同于-d,发送 POST 请求的数据体,区别在于会自动将发送的数据进行 URL 编码
// 下面的空格会进行编码
curl -X POST --data-urlencode "q=aa bb" www.baidu.com/search
3. 指定http方法
curl默认为 GET,使用-X可以指定其它方法
curl -X POST www.baidu.com
curl -X DELETE www.baidu.com
4. 文件上传
若文件上传的表单如此
<form method="POST" enctype='multipart/form-data' action="upload.cgi">
<input type=file name=upload>
<input type=submit name=press value="OK">
</form>
则如此上传
curl --form upload=@localfilename --form press=OK [URL]
// -F参数用来向服务器上传二进制文件。
// 下面命令会给 HTTP 请求加上标头Content-Type: multipart/form-data,然后将文件photo.png作为file字段上传。
curl -F 'file=@photo.png' https://google.com/profile
// -F参数可以指定 MIME 类型。
// 下面命令指定 MIME 类型为image/png,否则 curl 会把 MIME 类型设为application/octet-stream。
curl -F 'file=@photo.png;type=image/png' https://google.com/profile
// -F参数也可以指定文件名。
// 原始文件名为photo.png, server收到的文件名为me.png
curl -F 'file=@photo.png;filename=me.png' https://google.com/profile
5. 头部字段
// -H参数添加 HTTP 请求的标头。
curl -H 'Accept-Language: en-US' https://google.com
curl -H 'Accept-Language: en-US' -H 'Secret-Message: xyzzy' https://google.com
// 下面命令 添加 Content-Type: application/json,然后用-d参数发送 JSON 数据。
curl -d '{"login": "emma", "pass": "123"}' -H 'Content-Type: application/json' https://google.com/login
// referer字段用于表示你是从哪里跳转过来的
curl --referer www.baidu.com
// -e参数用来设置 HTTP 的标头Referer,表示请求的来源。
curl -e 'https://google.com?q=example' https://www.example.com
curl -H 'Referer: https://google.com?q=example' https://www.example.com
// user-agent
curl --user-agent "[User Agent]" [URL]
curl -A 'Mozilla/5.0' https://google.com
// 下面的命令会移除UA
curl -A '' https://google.com
// -A 指定UA,-H指定头部,使用-H显示指定UA
curl -H 'User-Agent: php/1.0' https://google.com
// 发送cookie
// 具体的cookie的值,可以从http response头信息的`Set-Cookie`字段中得到。
curl --cookie "name=xxx" www.example.com
// `-c cookie-file`可以保存服务器返回的cookie到文件
// 请求www.google.com,并保存服务器生成的cookie到cookie.txt
curl -c cookies.txt https://www.google.com
curl -b cookies http://example.com
// `-b cookie-file`可以使用这个文件作为cookie信息,进行后续的请求。
// 下面的命令会生成一个 Cookie: foo=bar的头部
curl -b 'foo=bar' https://google.com
curl -b 'foo1=bar;foo2=bar2' https://google.com
// 读取本地cookies.txt文件,里面是服务器设置的cookie
curl -b cookies.txt https://www.google.com
// 增加头信息
curl --header "Content-Type:application/json" http://example.com
// 认证信息
curl --user name:password example.com
6. 杂项
// -k参数指定跳过 SSL 检测。下面命令不会检查服务器的 SSL 证书是否正确。
curl -k https://www.example.com
// -L参数会让 HTTP 请求跟随服务器的重定向。curl 默认不跟随重定向。
curl -L -d 'tweet=hi' https://api.twitter.com/tweet
// --limit-rate用来限制 HTTP 请求和回应的带宽,模拟慢网速的环境。
curl --limit-rate 200k https://google.com
// -o参数将服务器的回应保存成文件,等同于wget命令。
curl -o example.html https://www.example.com
// -O参数将服务器回应保存成文件,并将 URL 的最后部分当作文件名。
curl -O https://www.example.com/foo/bar.html
// -s参数将不输出错误和进度信息。
// 但是不发生错误的话,会正常显示运行结果。
curl -s https://www.example.com
// 如果想让 curl 不产生任何输出,可以使用下面的命令。
curl -s -o /dev/null https://google.com