每天一个linux命令curl
Posted 白小白001
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每天一个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
以上是关于每天一个linux命令curl的主要内容,如果未能解决你的问题,请参考以下文章
CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段