正常情况:
curl ‘http://xxxx.xxxx.xxxx.xxxx:8080/assetservice/getXXX?参数1=xxxx&参数2=xxxx‘
如果有两个参数,url 必须用单引号括起来,否则读不到第二个参数。
如果参数带有[]或者是特殊字符,即参数2=[20180101],如果正常情况下显示不出来
python -c “import urllib as u; print u.urlopen(‘http://xxxx.xxxx.xxxx.xxxx:8080/assetservice/getXXX?参数1=xxxx&参数2=xxxx‘).read()”
原文地址:https://www.cnblogs.com/gad0925/p/8250733.html
时间: 2024-10-05 06:19:06