curl是常用的命令行工具,用来请求web服务器。curl是客户端(client)的URL工具的意思
curl https://www.google.com
上面命令向www.google.com发送get请求,服务器返回的内容会在命令行进行输出
-A
-A
参数指定客户端的用户代理标头,即user-agent
。
curl的默认用户代理字符串是curl/[version]
curl -A 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36' https://www.google.com
上面的命令将user-agent
改成chrome浏览器
curl -A '' https://www.google.com
上面的命令会移除user-agent
标头
也可以通过-H
参数直接指定标头,更改user-agent
:
curl -H
User-Agent:php/1.0
https://google.com
-b
-b
参数用来向服务器发送cookie
curl -b 'foo=bar' https://www.google.com
上面的命令会生成一个标头Cookie:foo=bar
,向服务器发送一个名为foo
,值为bar
的cookie
curl -b 'foo1=bar;foo2=bar2' https://www.google.com
上面的命令发送两个cookie
curl -b cookies.txt https://www.google.com
上面的命令读取本地文件cookies.txt
,里面是服务器设置的cookie
-c
-c
参数将服务器设置的cookie写入一个文件
curl -c cookies.txt https://www.google.com
上面命令将服务器的HTTP响应的cookie写入文本文件cookies.txt
-d
-d
参数用于发送POST请求的数据体
curl -d 'username=xiaoming&password=123456' -X POST https://www.google.com/login
或者:
curl -d 'username=xiaoming' -d 'password=123456' -X POST https://www.google.com/login
使用-d
参数后,HTTP会自动加上标头:Content-Type:application/x-www-form-urlencoded
,并且会自动将请求转为POST方法,因此可以省略-X POST
-d
参数也可以读取本地文本文件的数据,作为请求体向服务器发送:
curl -d '@data.txt' https://www.google.com/login
上面命令读取data.txt
文件的内容,作为数据体向服务器发送
--data-urlencoded
该参数等同于-d
,发送post请求的数据体,区别在于会自动将发送的数据进行URL编码
curl --data-urlencoded 'comment=hello world' https://www.google.com/login
上面的命令中,hello world
之间有空格,需要进行URL编码
-e
-e
参数用来设置HTTP的Referer
,表示请求的来源
curl -e 'https://www.google.com?q=example' https://www.example.com
上面命令将Referer标头设为https://www.google.com?q=example
也可以使用-H
参数直接添加标头:
curl -H 'Referer:https://www.google.com?q=example' https://www.example.com
-F
-F
参数用来向服务器上传二进制文件
curl -F '[email protected]' https://www.google.com/profile
上面命令会给HTTP请求加上标头Content-Type:multipart/form-data
,然后将文件photo.png
作为file字段进行上传
-F
参数也可以指定MIME类型:
curl -F '[email protected];type=image/png' https://www.google.com/profile
上面命令指定 MIME 类型为image/png,否则 curl 会把 MIME 类型设为application/octet-stream。
-F
参数也可以指定文件名:
curl -F '[email protected];filename=me.png' https://www.google.com/profile
上面命令中,原始文件名为photo.png,但是服务器接收到的文件名为me.png。
-G
-G
参数用来构造URL的查询字符串
curl -G -d 'username=xiaoming' -d 'age=19' https://www.google.com/search
上面的命令会发出一个GET请求,实际请求的URL为:https://www.google.com/search?username=xiaoming&age=19
,如果省略-G
参数,那么会发出一个POST请求
如果数据需要 URL 编码,也可以结合--data--urlencode参数。
-H
-H
参数添加HTTP请求的标头,例如:
curl -H 'Accept-Language: en-US' https://www.google.com
-i
-i
参数打印出服务器响应的HTTP标头
curl -i https://www.google.com
上面命令收到服务器回应后,先输出服务器回应的标头,然后空一行,再输出网页的源码。
-I
-I
参数向服务器发出HEAD请求,然后将服务器返回的HTTP标头打印出来
curl -I https://www.example.com
--head
参数等同于-I
:
curl --head https://www.example.com
-K
-k
参数指定跳过SSL检测
curl -k https://www.example.com
上面命令不会检查服务器的SSL证书是否正确
-L
-L
参数会让HTTP请求跟随服务器的重定向
--limit-rate
--limit-rate
用来限制HTTP请求和响应的带宽,模拟慢网速的环境
curl --limit-rate 200k https://www.google.com
上面命令将带宽限制在每秒200字节
-o
-o
参数将服务器响应保存成文件,等同于wgwt
命令
curl -o example.html https://www.example.com
上面命令将响应保存成example.html文件
-O
-O
参数将服务器回应保存成文件,并将URL的最后部分当作文件名
curl -O https://www.example.com/foo/bar.html
文件名为bar.html
-s
-s
参数将不输出错误和进度信息
curl -s https://www.example.com
上面命令一旦发生错误,不会显示错误信息。不发生错误的话,会正常显示运行结果。
如果想让 curl 不产生任何输出,可以使用下面的命令:
curl -s -o /dev/null https://www.example.com
-S
只输出错误信息
-u
-u
用来设置服务器认证的用户名和密码:
curl -u 'ali:123456' https://www.google.com/login
-v
-v
参数输出通信的整个过程,用于调试
--trace
参数也可以用于调试,还会输出原始的二进制数据
-x
-x
参数指定HTTP请求的代理:
curl -x socks5://james:[email protected]:8080 https://www.example.com
上面命令指定 HTTP 请求通过myproxy.com:8080的 socks5 代理发出。
如果没有指定代理协议,默认为 HTTP:
curl -x james:[email protected]:8080 https://www.example.com
-X
-X
参数指定HTTP请求的方法
curl -X POST https://www.example.com
上面命令会发出POST请求