curl 命令速查

本文整理自阮一峰 老师的《curl 的用法指南》,思维导图版下载:

链接:https://pan.baidu.com/s/1JUu6axfBKwQF3YH_9GdBfA 密码:cp21

文字版请阅读全文。

默认,无参数(GET 请求)

-A

指定 User-Agent,默认用户代理字符串是 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://google.com

  • curl -A '' https://google.com

    • 移除 User-Agent 标头
  • curl -H ‘User-Agent: php/1.0’ https://google.com

    • 这里是用 -H 参数直接修改标头

-b

向服务器发送 Cookie

示例

  • curl -b 'foo=bar' https://google.com
  • curl -b 'foo1=bar' -b 'foo2=baz' https://google.com
  • curl -b cookies.txt https://www.google.com

-c

将服务器设置的 Cookie 写入一个文件

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

-d

发送 POST 请求的数据体

作用

  • HTTP 请求会自动加上标头Content-Type : application/x-www-form-urlencoded。
  • 自动将请求转为 POST 方法,因此可以省略 -X POST。

示例

  • 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
  • curl -d '@data.txt' https://google.com/login

–data-urlencode

发送 POST 请求的数据体,同时自动将发送的数据进行 URL 编码。

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

-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

    • 这里是用 -H 参数直接修改标头

-F

向服务器上传二进制文件

作用

  • 给 HTTP 请求加上标头Content-Type: multipart/form-data
  • 将文件作为 file 字段上传

示例

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

  • 指定 MIME 类型

    • curl -F 'file=@photo.png;type=image/png' https://google.com/profile
    • 不指定的话,默认为 application/octet-stream
  • 指定文件名

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

-G

构造 URL 的查询字符串

示例

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

    • 这里会发出一个 GET 请求,实际请求的 URL 为 https://google.com/search?q=kitties&count=20
    • 如果省略 -G,会发出一个 POST 请求。
  • curl -G --data-urlencode 'comment=hello world' https://www.example.com

    • 对 URL 进行编码

-H

添加 HTTP 请求的标头

示例

  • curl -H 'Accept-Language: en-US' https://google.com

  • curl -H 'Accept-Language: en-US' -H 'Secret-Message: xyzzy' https://google.com

  • curl -d '{"login": "emma", "pass": "123"}' -H 'Content-Type: application/json' https://google.com/login

    • -H 指定标头 Content-Type: application/json
    • -d 发送 JSON 数据

-i

打印出服务器回应的 HTTP 标头及网页源码

示例 curl -i https://www.example.com

-I

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

示例 curl -I https://www.example.com,等同于 –head 参数

-k

指定跳过 SSL 证书检测

示例 curl -k https://www.example.com

-L

让 HTTP 请求跟随服务器的重定向(默认不跟随)

示例 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 -s -o /dev/null https://google.com

-S

指定只输出错误信息,通常与 -o 一起使用

示例 curl -S -o /dev/null https://google.com

-u

设置服务器认证的用户名和密码

示例

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

    • 设置用户名为 bob,密码为 12345
    • 并将其转为 HTTP 标头 Authorization: Basic Ym9iOjEyMzQ1
  • curl https://bob:12345@google.com/login

    • 识别 URL 中的用户名和密码
  • curl -u 'bob' https://google.com/login

    • 只设置了用户名,执行后,curl 会提示用户输入密码

-v

输出通信的整个过程,用于调试

示例

  • curl -v https://www.example.com

  • curl --trace - https://www.example.com

    • –trace 参数也可以用于调试,还会输出原始的二进制数据。

-x

指定 HTTP 请求的代理

示例

  • curl -x socks5://james:cats@myproxy.com:8080 https://www.example.com

    • 指定 HTTP 请求通过 myproxy.com:8080 的 socks5 代理发出
  • curl -x james:cats@myproxy.com:8080 https://www.example.com

    • 没有指定代理协议,默认为 HTTP

-X

指定 HTTP 请求的方法

示例 curl -X POST https://www.example.com