码迷,mamicode.com
首页 > Web开发 > 详细

【每天一个linux命令】curl

时间:2017-11-07 12:19:37      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:git   logs   span   get   code   转义   class   网址   post   

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

 

【每天一个linux命令】curl

标签:git   logs   span   get   code   转义   class   网址   post   

原文地址:http://www.cnblogs.com/bxbyy/p/7798184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!