【每天一个linux命令】curl

curl:访问http请求

1、不带参数的 get 访问网址

curl https://www.baidu.com/

2、带参数的 post 访问网址

# 原始http请求1
http://192.168.129.152:8090/queryRoadBookIdByRange.do?longitude=113.04817071797032&latitude=35.176670000049185&cityName=焦作市

# linux访问方式
curl -d "longitude=118.716157&latitude=31.987544&cityName=南京市" http://192.168.34.133:8090/queryRoadBookIdByRange.do
# 原始http请求
http://192.168.129.152:8090/routeMatch.do?path={ "path": [ { "lat": 31.995947740248248, "lon": 118.7367041372443 } ] }

# linux访问方式 - "要加转义字符 
curl -d "path={ "path": [ { "lat": 31.995947740248248, "lon": 118.7367041372443 } ] }" http://192.168.129.152:8090/routeMatch.do
原文地址:https://www.cnblogs.com/bxbyy/p/7798184.html