CURL 用法记录

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

posted @ 2021-09-27 22:17  明月照江江  阅读(50)  评论(0编辑  收藏  举报