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