CURL 用法记录

在工作中经常需要用到curl 命令,记录一下常用的场景

Send a POST Request with JSON Data

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


​-d​​ 等同于 ​​--data​​ ; ​​-d ​​会默认发​​POST​​请求

Send a POST Request with Data from a File

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


​@​​ 标注后面的内容为文件,数据从文件中获取

打印curl请求全过程​​-v​

curl -v -d  '{"hello":"world"}' http://www.baidu.com/login


参考链接

​CURL COOKBOOK​


作者:明月照江江,转载请注明原文链接