-
GET
curl -H "UID:1000" http://test2.order.intra.hiwemeet.com/v3/order/select/orderList?orderId=51709105677677685
-H 表示頭信息.get請求的參數(shù)直接跟在URL后面
-
POST
curl -H "UID:1000" -d "parameter=1234567" "http://xxx"
-d 后面跟參數(shù) 表示是Post請求
curl -H "UID:1000" http://test2.order.intra.hiwemeet.com/v3/order/select/orderList?orderId=51709105677677685
-H 表示頭信息.get請求的參數(shù)直接跟在URL后面
curl -H "UID:1000" -d "parameter=1234567" "http://xxx"
-d 后面跟參數(shù) 表示是Post請求