curl 命令 从文件读取参数

-d @filename 从文件读入内容
-d @- 从stdin读入内容

-x localhost:8888   加上fiddler代理

一个sample

curl -K api.conf -d @body.json

-----------------------------------

-X POST
-H "accept: */*"
-H "Content-Type: application/json"
-x localhost:8888
-H "xxxxx: xxx"
-H "xxxxxx: xxxxx"
-H "xxxxxxxx: xxxx"
url = "http://localhostxxxxxxx"

----------------------------------

原文地址:https://www.cnblogs.com/tekikesyo/p/10071088.html