curl发送请求

为什么80%的码农都做不了架构师?>>>   hot3.png

curl模拟表单请求

curl -X POST http://127.0.0.1:32301/in/ber?type=1&t=914403L

服务器发送多个参数post请求 通过 转义符隔开

curl -X POST http://127.0.0.1:32301/in/ber?type=1\&t=914403L

curl 模拟发送post请求

curl -H "Content-Type:application/json" -X POST --data '{"message": "sunshine"}' http://localhost:8000/

 

转载于:https://my.oschina.net/gh200/blog/3028047

你可能感兴趣的:(curl发送请求)