Curl发送POST请求备忘

需求背景

想简单测试某个API是否是可用的,而且机器上又没有装postman之类的工具,这时就有curl的用武之地了。

操作示例

# cmd 
curl.exe -X POST -H "Content-Type: application/json" -d "{\"name\":\"hello\"}" http://localhost/test

# powershell 
curl.exe -X POST -H 'Content-Type: application/json' -d '{\"name\":\"hello\"}' http://localhost/test 

# bash 
curl -X POST -H "Content-Type: application/json" -d '{"name":"hello"}' http://localhost/test

posted on 2022-03-23 17:11  白首码农  阅读(83)  评论(0编辑  收藏  举报