curl POST请求使用-d传参数
1. 通过post方法请求
curl -d 'type=0?enable=1' "http://127.0.0.1/api/test"
传递json:
curl -H "Content-Type: application/json" -X POST -d '{"type":0, "enable":"1"}' "http://127.0.0.1/api/test"
实际使用哪种,看接口需要的是json还是字符串
2. 通过GET方法请求(wireshark抓包确认是GET请求):
curl "http://127.0.0.1/api/test"
GET请求方法传参(wireshark抓包确认是GET请求):
curl "http://127.0.0.1/api/test?name=cat"
其它:
-G:表示GET请求,缺省POST
-d参数用于发送 POST 请求的数据体
使用-d参数以后,HTTP 请求会自动加上标头Content-Type : application/x-www-form-urlencoded。并且会自动将请求转为 POST 方法,因此可以省略-X POST。
linux下使用GET url传参时注意转义:
curl "http://127.0.0.1/api/test\?name\=cat"
curl --help查看全部参数用法