1. 程式人生 > >curl 模擬 http發送get/post請求

curl 模擬 http發送get/post請求

cati head sdn 方法 header local detail cat admin

參考https://blog.csdn.net/u012340794/article/details/71440604

使用curl 發送GET請求

curl http://localhost:8081/login?admin&asp;password=123456

使用curl 發送POST請求

curl -d "admin&asp;password=123456" http://localhost:8081/login

使用curl 發送JSON字符串的POST請求

這種方法是參數直接在header裏面的,如需將輸出指定到文件可以通過重定向進行操作.
curl -H "Content-Type:application/json" -X POST -d ‘json data‘ URL

例如: curl -H "Content-Type:application/json" -X POST -d ‘{"username": "0","password": "10"}‘ http://localhost:8081/login

curl 模擬 http發送get/post請求