欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

可能是东半球最好的 Curl 学习指南,强烈建议收藏!

程序员文章站 2024-01-24 13:51:52
本文首发于:微信公众号「运维之美」,公众号 ID:Hi Linux。 「运维之美」是一个有情怀、有态度,专注于 Linux 运维相关技术文章分享的公众号。公众号致力于为广大运维工作者分享各类技术文章和发布最前沿的科技信息。公众号的核心理念是:分享,我们认为只有分享才能使我们的团体更强大。如果你想第一 ......

可能是东半球最好的 Curl 学习指南,强烈建议收藏!


本文首发于:微信公众号「运维之美」,公众号 id:hi-linux。

「运维之美」是一个有情怀、有态度,专注于 linux 运维相关技术文章分享的公众号。公众号致力于为广大运维工作者分享各类技术文章和发布最前沿的科技信息。公众号的核心理念是:分享,我们认为只有分享才能使我们的团体更强大。如果你想第一时间获取最新技术文章,欢迎关注我们!

公众号作者 mike,一个月薪 3000 的杂工。从事 it 相关工作 15+ 年,热衷于互联网技术领域,认同开源文化,对运维相关技术有自己独特的见解。很愿意将自己积累的经验、心得、技能与大家分享交流,篇篇干货不要错过哟。如果你想联系到我,可关注公众号获取相关信息。


简介

curl 是常用的命令行工具,用来请求 web 服务器。它的名字就是客户端(client)的 url 工具的意思。

它的功能非常强大,命令行参数多达几十种。如果熟练的话,完全可以取代 postman 这一类的图形界面工具。

使用实例

本文介绍它的主要命令行参数,作为日常的参考,方便查阅。内容主要翻译自 《curl cookbook》。为了节约篇幅,下面的例子不包括运行时的输出,初学者可以先看我以前写的 《curl 初学者教程》。

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

$ curl https://www.example.com

上面命令向 www.example.com 发出 get 请求,服务器返回的内容会在命令行输出。

-a

-a 参数指定客户端的用户代理标头,即 user-agentcurl 的默认用户代理字符串是 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

上面命令将 user-agent 改成 chrome 浏览器。

$ curl -a '' https://google.com

上面命令会移除 user-agent 标头。你也可以通过 -h 参数直接指定标头,更改 user-agent

$ curl -h 'user-agent: php/1.0' https://google.com

-b

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

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

上面命令会生成一个标头 cookie: foo=bar,向服务器发送一个名为 foo、值为 barcookie

$ curl -b 'foo1=bar' -b 'foo2=baz' https://google.com

上面命令发送两个 cookie

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

上面命令读取本地文件 cookies.txt,里面是服务器设置的 cookie(参见 -c 参数),将其发送到服务器。

-c

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

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

上面命令将服务器的 http 回应所设置 cookie 写入文本文件 cookies.txt

-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.txt 文件的内容,作为数据体向服务器发送。

--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

上面命令将 referer 标头设为 https://google.com?q=example

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

$ curl -h 'referer: https://google.com?q=example' https://www.example.com

-f

-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

上面命令指定 mime 类型为 image/png,否则 curl 会把 mime 类型设为 application/octet-stream

-f 参数也可以指定文件名。

$ curl -f 'file=@photo.png;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 请求。

如果数据需要 url 编码,可以结合 --data--urlencode 参数。

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

-h

-h 参数添加 http 请求的标头。

$ curl -h 'accept-language: en-us' https://google.com

上面命令添加 http 标头 accept-language: en-us

$ curl -h 'accept-language: en-us' -h 'secret-message: xyzzy' https://google.com

上面命令添加两个 http 标头。

$ curl -d '{"login": "emma", "pass": "123"}' -h 'content-type: application/json' https://google.com/login

上面命令添加 http 请求的标头是 content-type: application/json,然后用 -d 参数发送 json 数据。

-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

上面命令不会检查服务器的 ssl 证书是否正确。

-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

上面命令一旦发生错误,不会显示错误信息。不发生错误的话,会正常显示运行结果。

如果想让 curl 不产生任何输出,可以使用下面的命令。

$ curl -s -o /dev/null https://google.com

-s

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

$ curl -s -o /dev/null https://google.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 会提示用户输入密码。

-v

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

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

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

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

-x

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

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

上面命令指定 http 请求通过 myproxy.com:8080socks5 代理发出。

如果没有指定代理协议,默认为 http

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

上面命令中,请求的代理使用 http 协议。

-x

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

$ curl -x post https://www.example.com

上面命令对 https://www.example.com 发出 post 请求。

参考链接

  • curl cookbook

来源:阮一峰的网络日志

原文:http://t.cn/airquqlz

题图:来自谷歌图片搜索

版权:本文版权归原作者所有

投稿:欢迎投稿,邮箱: editor@hi-linux.com


可能是东半球最好的 Curl 学习指南,强烈建议收藏!