curl 常用命令

curl 发送post请求 json数据

curl -X POST -H "Content-Type: application/json" -H "referer:http://localhost" http://localhost:8080/test/hello -d '{"param":"20210608"}'

-- 用本地json文件 (在执行该命令下的目录中新建param.json)
curl -X POST -H "Content-Type: application/json" -H "referer:http://localhost" http://localhost:8080/test/hello -d @param.json

  

 

posted @ 2023-07-30 15:28  htj10  阅读(12)  评论(0编辑  收藏  举报
TOP