curl 发送 http请求

Posted huhewei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl 发送 http请求相关的知识,希望对你有一定的参考价值。

测试接口,经常会用到接口测试工具如postman,而curl命令可以直接在终端进行测试,下面介绍一下如何使用

get 请求

curl "http://localhost:3000/api/books?page=1&limit=4" 

post请求   

curl -X POST "http://localhost:3000/api/books"  -d "name=测试"

-X POST 表示请求方式,-d 后边是请求参数 ,put、delete请求同post请求

请求参数为json格式

curl -H "Content-Type:application/json" -X POST "http://localhost:3000/api/books" -d {"name":"测试"}

返回json格式化问题

curl请求没有格式化之前是这样的

 
技术图片
 

用npm安装json命令  npm install -g json

在curl命令后面添加 | json 即可。

curl "http://localhost:3000/api/warehouse?page=1&limit=4" -s | json

 
技术图片
 
 
 
作者:M_豆
链接:https://www.jianshu.com/p/4507bd5c12f4
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

以上是关于curl 发送 http请求的主要内容,如果未能解决你的问题,请参考以下文章

每天一个linux命令13之curl发送http请求

Linux命令发送Http GET/POST请求

HTTP post/API 请求在 bash 上从 CURL 发送时有效,从 Apache http 失败

发送带有 http 标头的 curl 请求

PHP发送HTTP请求的几种方式

使用curl测试不安全的HTTP请求