用 postman 学 cURL

不用 postman 也能学, 但用 postman 更简单.

目标

目标很简单, 也很明确, 能够使用 cURL 发送常用的 GET, POST, DELETE, PATCH 请求.

方法

首先打开 postman, 在地址栏输入 https://requestb.in/s437tns4. 这是我从 https://requestb.in/ 临时生成的一个 url, 可以用来接受并显示我们的 request. 它就像一个回声, 你 ping 它就 pong.

点击发送, 有:

看到已经返回了状态码 200 以及 ok.

到 request bin 刷新一下, 可以看到刚才从 postman 发出的请求:

下面用 cURL 来做同样的事. 点击 postman 右上角的 code, 可以看到这个 request 在多种语言的代码, 我们选择 cURL, 得到代码:

curl -X GET \
  https://requestb.in/s437tns4 \
  -H 'cache-control: no-cache' \
  -H 'postman-token: 5b7cd4ba-3dd2-f7e6-d793-c6a1aef2f36e'

在 shell 下发送这个请求:

再去 request bin 刷新一下, 收到了第二个请求!

截了这么久的图... 现在我们学到了三个知识点:

  • curl 的一般格式是 curl <一个url>
  • -X GET 指定 request 类型位 GET 请求 (An HTTP Method (verb))
  • -H 'key=value' 指定 header 键值对

实践

过程你懂了. 现在把 postman 的 GET 换成 POST, 得到 cURL 代码:

curl -X POST \
  https://requestb.in/s437tns4 \
  -H 'cache-control: no-cache' \
  -H 'postman-token: a645c3f7-fe70-3e2a-213e-5651826cd735'

再刷新 request bin 页面, 得到一个 post 请求:

但你啥东西都没有 post 啊, 我们给 body 加上点文本:

curl -X POST \
  https://requestb.in/s437tns4 \
  -H 'cache-control: no-cache' \
  -H 'postman-token: f5cdd615-db24-0add-d278-8928560b1313' \
  -d '{
   "ping": "pong"
}'

哒哒, 收到了数据:

现在, 我们很确定 -X 后面指定的是 request 方法. 还学到了加 payload 的方法: -d '<字符串>'. (这个 -d--data 的意思.)

The request body can be in multiple formats. These formats are defined by the MIME type of the request. The MIME Type can be set using the Content-Type HTTP header. The most commonly used MIME types are:

  • multipart/form-data
  • application/x-www-form-urlencoded
  • application/json

有几种 post:

  • POST Raw Text: -d 'string'
  • POST Form Data: -d 'foo=bar&foo2=baz'

再多一点实践

  1. form data
curl -X PATCH \
  https://requestb.in/s437tns4 \
  -H 'cache-control: no-cache' \
  -H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
  -H 'postman-token: 17a4727a-cfbd-8ec3-e139-e484270158b2' \
  -F ping=pong

哈哈, 我居然是 patch 的一个 form data... 好像哪里不对.

  1. form url encoded
curl -X POST \
  https://requestb.in/s437tns4 \
  -H 'cache-control: no-cache' \
  -H 'content-type: application/x-www-form-urlencoded' \
  -H 'postman-token: 1b1ccc0d-e3a4-73ed-366c-b9d30dc9238c' \
  -d '%E6%88%91%E6%98%AF=%E8%B0%81%3F&Who-Am=I'

看看 request bin 收到的 request:

再举一个例子:

HTML 里的这样一个 POST

<form method="POST" action="junk.cgi">
    <input type=text name="birthyear">
    <input type=submit name=press value=" OK ">
</form>

等价于

curl --data "birthyear=1905&press=%20OK%20"  \
    http://www.example.com/when.cgi

This kind of POST will use the Content-Type application/x-www-form-urlencoded and is the most widely used POST kind.

这个 %20 很常见, 是空格键, 看 ASCII 表 就知道.

现在的 cURL 可以不用手工转义:

curl --data-urlencode "name=I am Daniel" \
    http://www.example.com
  1. params
curl -X GET \
  'https://requestb.in/s437tns4?%E6%88%91=%E6%98%AF%E8%B0%81&Who=am-I' \
  -H 'cache-control: no-cache' \
  -H 'postman-token: 1be0f58e-fa8b-9a1e-79e4-2dbae11f14f7' \
  -d '%E6%88%91%E6%98%AF=%E8%B0%81%3F&Who-Am=I'

再看再学把. postman 虽然好用, 但实在是太卡了! 所以要 GET cURL.

文件上传

post form-data:

选两个文件上传
收到的 request

注意到上面最后一个 boundry 后面还有两个 --.

对应的 cURL:

curl -X POST \
  https://requestb.in/yx5thyyx \
  -H 'cache-control: no-cache' \
  -H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
  -H 'postman-token: 8a19e97d-2cac-2783-402e-b0a1b17f048b' \
  -F filekey1=@/private/tmp/file1 \
  -F filekey2=@/private/tmp/file2.json

那个 boundry 是个 随机 的.

put file:

Perhaps the best way to upload data to a HTTP server is to use PUT. Then again, this of course requires that someone put a program or script on the server end that knows how to receive a HTTP PUT stream.

试了一下和 post 看上去没啥区别.

其他

用 referer 来看人家傻不傻:

A HTTP request may include a 'referer' field (yes it is misspelled, 哈哈, 就是拼错了), which can be used to tell from which URL the client got to this particular resource. Some programs/scripts check the referer field of requests to verify that this wasn't arriving from an external site or an unknown page. While this is a stupid way to check something so easily forged, many scripts still do it. Using curl, you can put anything you want in the referer-field and thus more easily be able to fool the server into serving your request.

Use curl to set the referer field with:

curl --referer http://www.example.come \
    http://www.example.com

user agent:

--user-agent, 还是看傻不傻.

TODO

更多实例.


Notes

  • mulitple requests: curl -I http://example.com --next http://example.com

PUT

The HTTP PUT request method is similar to HTTP POST. It too is meant to transfer data to a server (and elicit a response). What data is returned depends on the implementation of the server.

A PUT request can pass parameters to the server using "Query String Parameters", as well as the Request Body. For example, in the following raw HTTP request,

PUT /hi/there?hand=wave

PATCH

The HTTP PATCH method is used to update resources on a server. The exact use of PATCH requests depends on the server in question. There are a number of server implementations which handle PATCH differently. Technically, PATCH supports both Query String parameters and a Request Body.

references

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,598评论 18 139
  • 1.引言 最近在尝试android系统启动的时候打印log。看看启动顺序是不是按照书上讲的那个样子。在用adb启动...
    过期的薯条阅读 2,305评论 0 0
  • 2017年,10月7号,雨 我就上午本打算出门买个药就回来呢,可平常总觉得颈椎肩颈疼的厉害,而且都不敢用右手抱...
    放飞梦想a阅读 234评论 0 0
  • 9月8日凌晨,薛之谦在微博上发布昏黄路灯下牵手照片,并说:我记得…你跟我时…我一无所有…我不想再寻觅了….请让我给...
    一禾君仪阅读 567评论 0 3