curl参数

-A

-A参数指定客户端的用户代理标头,即User-Agent。

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: php/1.0' https://google.com

-b

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

curl -b 'foo=bar;foo2=bar2' https://google.com

读取本地文件cookies.txt,将其发送到服务器。

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

-c

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

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

-d

-d参数用于发送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

使用-d参数,HTTP请求会自动加上标头Content-Type : application/x-www-form-urlencoded。并且会自动将请求转为post方法,因此可省略-X POST。
-d参数可以读取本地文本文件的数据,向服务器发送。

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

--data-urlencode

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

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

上面代码中,发送的数据hello world之间有一个空格,需要进行URL编码。

-e

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

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

-F

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

curl -F '[email protected]' https://google.com/profile

上面命令会给HTTP请求加上标头Content-Type: multipart/form-data,然后将文件photo.png作为file字段上传。-F参数可以指定MIME类型。

curl -F '[email protected];type=image/png' https://google.com/profile

上面命令指定MIME类型为image/png,否则curl会把MIME类型设为application/octet-stream。
-F参数也可以指定文件名。

curl -F '[email protected];filename=me.png' https://google.com/profile

上面命令中,原始文件名为photo.png,但是服务器接收到的文件名为me.png。

-G

-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请求。

-H

-H参数添加HTTP请求的标头。

curl -H 'Accept-Language: en-US' https://google.com
curl -H 'Accept-Language: en-US' -H 'Secret-Message: xyzzy' https://google.com/login
curl -d '{"login": "emma", "pass": "123"}' -H 'Content-Type: application/json' https://google.com/login

-i

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

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

-I

-I参数向服务器发出head请求,然后将服务器返回的http标头打印出来。

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

上面命令输出服务器对head请求的回应。
--head参数等同于-I。

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

-k

-k参数指定跳过SSL检测。

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

-L

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

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

--limit-rate

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

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

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

-o

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

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

上面命令将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

-S

-S参数指定只输出错误信息,通常与-s一起使用。

-u

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

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

上面命令设置用户名为bob,密码为12345,然后将其转为http标头。

-v

-v参数输出通信的整个过程,用于调试。

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

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

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

-x

-x参数指定http请求的代理。

curl -x socks5://james:[email protected]:8080 https://www.example.com

-X

-X参数指定http请求的方法。

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

你可能感兴趣的:(curl参数)