curl

不带有任何参数时,curl 就是发出 GET 请求

  1. curl https://www.example.com

-A参数指定客户端的用户代理标头,即User-Agent。curl 的默认用户代理字符串是curl/[version]

  1. 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://google.com

通过-H参数直接指定标头,更改User-Agent

  1. curl -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36' https://google.com

-b参数用来向服务器发送 Cookie

  1. curl -b 'foo=bar' https://google.com

读取本地文件中的cookies.txt,里面是服务器设置的 Cookie,将其发送到服务器

  1. curl -b cookies.txt https://www.google.com

-c参数将服务器设置的 Cookie 写入一个文件

  1. curl -c cookies.txt https://www.google.com

-d参数用于发送 POST 请求的数据体(-X 指定请求方式,默认为GET)

  1. curl -d'login=emma&password=123'-X POST https://google.com/login
  2. # 或者
  3. 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

-d参数可以读取本地文本文件的数据,向服务器发送

  1. curl -d '@data.txt' https://google.com/login

—data-urlencode参数等同于-d,发送 POST 请求的数据体,区别在于会自动将发送的数据进行 URL 编码

  1. curl --data-urlencode 'comment=hello world' https://google.com/login

-e参数用来设置 HTTP 的标头Referer,表示请求的来源

  1. curl -e 'https://google.com?q=example' https://www.example.com

-H参数可以通过直接添加标头Referer,达到同样效果

  1. curl -H 'Referer: https://google.com?q=example' https://www.example.com

-F参数用来向服务器上传二进制文件。

  1. curl -F 'file=@photo.png' https://google.com/profile

上面命令会给 HTTP 请求加上标头Content-Type: multipart/form-data,然后将文件photo.png作为file字段上传。

-F参数可以指定 MIME 类型

  1. curl -F 'file=@photo.png;type=image/png' https://google.com/profile

-F参数也可以指定文件名

  1. curl -F 'file=@photo.png;filename=me.png' https://google.com/profile

-G参数用来构造 URL 的查询字符串

  1. curl -G -d 'q=kitties' -d 'count=20' https://google.com/search

上面命令会发出一个 GET 请求,实际请求的 URL 为https://google.com/search?q=kitties&count=20。如果省略-G,会发出一个 POST 请求。

数据需要 URL 编码,可以结合--data--urlencode参数

  1. curl -G --data-urlencode 'comment=hello world' https://www.example.com

-i参数打印出服务器回应的 HTTP 标头

  1. curl -i https://www.example.com

-I参数向服务器发出 HEAD 请求,然会将服务器返回的 HTTP 标头打印出来

  1. curl -I https://www.example.com

—head参数等同于-I

  1. curl --head https://www.example.com

-k参数指定跳过 SSL 检测

  1. curl -k https://www.example.com

-L参数会让 HTTP 请求跟随服务器的重定向。curl 默认不跟随重定向

  1. curl -L -d 'tweet=hi' https://api.twitter.com/tweet

—limit-rate用来限制 HTTP 请求和回应的带宽,模拟慢网速的环境

  1. curl --limit-rate 200k https://google.com

上面命令将带宽限制在每秒 200K 字节。

-o参数将服务器的回应保存成文件,等同于wget命令

  1. curl -o example.html https://www.example.com

上面命令将www.example.com保存成example.html

-O参数将服务器回应保存成文件,并将 URL 的最后部分当作文件名

  1. curl -O https://www.example.com/foo/bar.html

上面命令将服务器回应保存成文件,文件名为bar.html

-s参数将不输出错误和进度信息。

  1. curl -s https://www.example.com

-u参数用来设置服务器认证的用户名和密码

  1. curl -u 'bob:12345' https://google.com/login