- curl
- 不带有任何参数时,curl 就是发出 GET 请求
- -A参数指定客户端的用户代理标头,即User-Agent。curl 的默认用户代理字符串是curl/[version]
- 通过-H参数直接指定标头,更改User-Agent
- -b参数用来向服务器发送 Cookie
- 读取本地文件中的cookies.txt,里面是服务器设置的 Cookie,将其发送到服务器
- -c参数将服务器设置的 Cookie 写入一个文件
- -d参数用于发送 POST 请求的数据体(-X 指定请求方式,默认为GET)
- -d参数可以读取本地文本文件的数据,向服务器发送
- —data-urlencode参数等同于
-d
,发送 POST 请求的数据体,区别在于会自动将发送的数据进行 URL 编码 - -e参数用来设置 HTTP 的标头
Referer
,表示请求的来源 - -H参数可以通过直接添加标头
Referer
,达到同样效果 - -F参数用来向服务器上传二进制文件。
- -F参数可以指定 MIME 类型
- -F参数也可以指定文件名
- -G参数用来构造 URL 的查询字符串
- 数据需要 URL 编码,可以结合
--data--urlencode
参数 - -i参数打印出服务器回应的 HTTP 标头
- -I参数向服务器发出 HEAD 请求,然会将服务器返回的 HTTP 标头打印出来
- —head参数等同于
-I
。 - -k参数指定跳过 SSL 检测
- -L参数会让 HTTP 请求跟随服务器的重定向。curl 默认不跟随重定向
- —limit-rate用来限制 HTTP 请求和回应的带宽,模拟慢网速的环境
- -o参数将服务器的回应保存成文件,等同于
wget
命令 - -O参数将服务器回应保存成文件,并将 URL 的最后部分当作文件名
- -s参数将不输出错误和进度信息。
- -u参数用来设置服务器认证的用户名和密码
curl
不带有任何参数时,curl 就是发出 GET 请求
curl https://www.example.com
-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://google.com
通过-H参数直接指定标头,更改User-Agent
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
curl -b 'foo=bar' https://google.com
读取本地文件中的cookies.txt,里面是服务器设置的 Cookie,将其发送到服务器
curl -b cookies.txt https://www.google.com
-c参数将服务器设置的 Cookie 写入一个文件
curl -c cookies.txt https://www.google.com
-d参数用于发送 POST 请求的数据体(-X 指定请求方式,默认为GET)
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
。
-d参数可以读取本地文本文件的数据,向服务器发送
curl -d '@data.txt' https://google.com/login
—data-urlencode参数等同于-d
,发送 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
-H参数可以通过直接添加标头Referer
,达到同样效果
curl -H 'Referer: https://google.com?q=example' https://www.example.com
-F参数用来向服务器上传二进制文件。
curl -F 'file=@photo.png' https://google.com/profile
上面命令会给 HTTP 请求加上标头Content-Type: multipart/form-data
,然后将文件photo.png
作为file
字段上传。
-F参数可以指定 MIME 类型
curl -F 'file=@photo.png;type=image/png' https://google.com/profile
-F参数也可以指定文件名
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 请求。
数据需要 URL 编码,可以结合--data--urlencode
参数
curl -G --data-urlencode 'comment=hello world' https://www.example.com
-i参数打印出服务器回应的 HTTP 标头
curl -i https://www.example.com
-I参数向服务器发出 HEAD 请求,然会将服务器返回的 HTTP 标头打印出来
curl -I https://www.example.com
—head参数等同于-I
。
curl --head https://www.example.com
-k参数指定跳过 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
上面命令将带宽限制在每秒 200K 字节。
-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参数将不输出错误和进度信息。
curl -s https://www.example.com
-u参数用来设置服务器认证的用户名和密码
curl -u 'bob:12345' https://google.com/login