-
GET
curl -H "UID:1000" http://test2.order.intra.hiwemeet.com/v3/order/select/orderList?orderId=51709105677677685
-H 表示头信息.get请求的参数直接跟在URL后面
-
POST
curl -H "UID:1000" -d "parameter=1234567" "http://xxx"
-d 后面跟参数 表示是Post请求
curl -H "UID:1000" http://test2.order.intra.hiwemeet.com/v3/order/select/orderList?orderId=51709105677677685
-H 表示头信息.get请求的参数直接跟在URL后面
curl -H "UID:1000" -d "parameter=1234567" "http://xxx"
-d 后面跟参数 表示是Post请求
本文标题:CURL 命令模拟HTTP GET && POST请求
本文链接:https://www.haomeiwen.com/subject/rqfygxtx.html
网友评论