CURL用法
cURL简介
cURL的官方定义为:curl is a command line tool for transferring data with URL syntax
,即使用URL语法规则来传输数据的命令行工具。
cURL是一个命令行工具,作用是发出网络请求,然后得到和提取数据,显示在“标准输出”(stdout)上面。
简单的GET请求
当我们使用curl请求不带任何参数的时候,默认就是发送GET请求。
curl http://www.example.com
上面命令向www.example.com
发出 GET 请求,服务器返回的内容会在命令行输出。
示例:
curl http://www.master.com/index.html
<!DOCTYPE html>
<html>
<head>
<title>CURL</title>
<style>
</style>
</head>
<body>
<p>Learn CURL!</p>
</body>
</html>
如果想把这个网页保存下来,可以使用-o
参数,相当于使用wget命令:
curl -o [文件名] http://www.example.com
-X参数:指定请求方法
-X
参数指定HTTP请求的方法。
curl -X [GET/POST/PUT/DELETE/HEAD/OPTIONS/TRACE/CONNECT] www.example.com
-d参数:指定POST请求的数据体
-d
参数用于发送 POST 请求的数据体。
curl -X POST www.example.com -d 'user=itbsl&password=123456'
# 或
curl -X POST www.example.com -d 'user=itbsl' -d 'password=123456'
使用-d
参数以后,HTTP 请求会自动加上标头Content-Type : application/x-www-form-urlencoded
。并且会自动将请求转为 POST 方法,因此可以省略-X POST
。
-d
参数可以读取本地文本文件的数据,向服务器发送。
curl -d '@data.txt' www.example.com
--data-urlencode:编码后的-d
--data-urlencode
参数等同于-d
,发送 POST 请求的数据体,区别在于会自动将发送的数据进行 URL 编码。
curl -X POST www.example.com --data-urlencode "user=hello world"
上面代码中,发送的数据hello world
之间有一个空格,需要进行 URL 编码。
注意:如果使用--data-urlencode的方式指定了多个参数,可能会出现下面的情况
curl -X POST www.master.com --data-urlencode 'user=hello world&password=123456'
<pre>array(1) {
["user"] => string(27) "hello world&password=123456"
}
-G参数:构造URL查询字符串
-G
参数用来构造 URL 的查询字符串。
curl -G www.example.com -d 'user=itbsl' -d 'password=123456'
上面命令会发出一个 GET 请求,实际请求的 URL 为https://example.com?user=itbsl&password=123456
。如果省略-G
,会发出一个 POST 请求。
如果数据需要 URL 编码,可以结合--data--urlencode
参数。
-H参数:添加HTTP请求标头
-H
参数添加HTTP请求的标头。
curl -H 'User-Agent: itbsl/1.0' www.example.com
下面添加两个标头
curl -H 'User-Agent: itbsl/1.0' -H 'Sign: xxyyzz' www.example.com
下面命令添加 HTTP 请求的标头是Content-Type: application/json
,然后用-d
参数发送 JSON 数据。
curl https://example.com/login -d '{"login": "emma", "pass": "123"}' -H 'Content-Type: application/json'
-L参数:自动跳转
有的网址是自动跳转的。使用-L
参数,curl就会跳转到新的网址。
curl -L www.example.com
示例:
www.master.com下的index.php增加重定向代码
header('Location: http://www.slave.com/index.html');
当我们在终端执行curl -L www.master.com命令时,展示的是www.slave.com/index.html页面的代码
curl -L www.master.com
<!DOCTYPE html>
<html>
<head>
<title>CURL</title>
<style>
</style>
</head>
<body>
<p>Learn CURL!</p>
</body>
</html>
-i参数:显示头信息
-i
参数可以显示http response的头信息,联通网页代码一起。
curl -i www.example.com
示例:
curl -i www.master.com/index.html
HTTP/1.1 200 OK
Server: nginx
Date: Sun, 20 Jun 2021 08:09:44 GMT
Content-Type: text/html
Content-Length: 126
Last-Modified: Sat, 19 Jun 2021 17:24:32 GMT
Connection: keep-alive
ETag: "60ce2850-7e"
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<title>CURL</title>
<style>
</style>
</head>
<body>
<p>Learn CURL!</p>
</body>
</html>
-I
参数则是只显示http response的头信息。--head
参数等同于-I
。
-A:指定User-Agent
-A
参数指定客户端的用户代理标头,即User-Agent
。curl 的默认用户代理字符串是curl/[version]
。
curl -A 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36' www.example.com
上面命令将User-Agent
改成 Chrome 浏览器。
curl -A '' www.master.com
上面命令会移除User-Agent
标头。
也可以通过--user-agent
指定User-Agent参数。
也可以通过-H
参数直接修改指定标头,更改User-Agent
。
curl -H 'User-Agent: itbsl/1.0' http://www.master.com
-k参数:跳过SSL监测
-k
参数指定跳过 SSL 检测。
curl -k www.example.com
--limit-rate:限制请求和响应带宽
--limit-rate
用来限制 HTTP 请求和回应的带宽,模拟慢网速的环境。
curl --limit-rate 200k www.example.com
-v参数:调试
-v
参数输出通信的整个过程,用于调试。
curl -v www.example.com
--trace
参数也可以用于调试,还会输出原始的二进制数据。
curl --trace - www.example.com
-x参数:指定请求代理
-x
参数指定 HTTP 请求的代理。
curl -x socks5://james:cats@myproxy.com:8080 https://www.example.com
上面命令指定 HTTP 请求通过myproxy.com:8080
的 socks5 代理发出。
如果没有指定代理协议,默认为 HTTP。
curl -x james:cats@myproxy.com:8080 https://www.example.com
上面命令中,请求的代理使用 HTTP 协议。
-o参数:保存文件
-o
参数将服务器的回应保存成文件,等同于wget
命令。
curl -o example.html https://www.example.com
上面命令将www.example.com
保存成example.html
。
-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://google.com
-S参数:只输出错误错误信息
-S
参数指定只输出错误信息,通常与-o
一起使用。
curl -S -o 'error.txt' www.example.com
-u参数:用户设置服务器认证的用户名和密码
-u
参数用来设置服务器认证的用户名和密码。
curl -u 'bob:12345' https://google.com/login
上面命令设置用户名为bob
,密码为12345
,然后将其转为 HTTP 标头Authorization: Basic Ym9iOjEyMzQ1
。
curl 能够识别 URL 里面的用户名和密码。
curl https://bob:12345@google.com/login
上面命令能够识别 URL 里面的用户名和密码,将其转为上个例子里面的 HTTP 标头。
curl -u 'bob' https://google.com/login
上面命令只设置了用户名,执行后,curl 会提示用户输入密码。