Linux命令发送Http GET/POST请求
Posted DC
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux命令发送Http GET/POST请求相关的知识,希望对你有一定的参考价值。
Get请求
curl命令模拟Get请求:
1、使用curl命令:
curl "http://www.baidu.com" 如果这里的URL指向的是一个文件或者一幅图都可以直接下载到本地 curl -i "http://www.baidu.com" 显示全部信息 curl -I "http://www.baidu.com" 只显示头部信息 curl -v "http://www.baidu.com" 显示get请求全过程解析
2、使用wget命令:
wget "http://www.baidu.com"
curl命令模拟Get请求携带参数(linux):
curl -v http://127.0.0.1:80/xcloud/test?version=1&client_version=1.1.0&seq=1001&host=aaa.com
上述命令在linux系统,get请求携带的参数只到version=1,”&”符号在linux系统中为后台运行的操作符,此处需要使用反斜杠”\\”转义,即:
curl -v http://127.0.0.1:80/xcloud/test?version=1\\&client_version=1.1.0\\&seq=1001\\&host=aaa.com
或者
curl -v "http://127.0.0.1:80/xcloud/test?version=1&client_version=1.1.0&seq=1001&host=aaa.com"
Post请求
1、使用curl命令,通过-d参数,把访问参数放在里面,如果没有参数,则不需要-d,
curl -d "username=user1&password=123" "www.test.com/login"
2、使用wget命令
wget –post-data \'username=user1&password=123\' http://www.baidu.com
3、发送格式化json请求
curl -i -k -H "Content-type: application/json" -X POST -d \'{"version":"6.6.0", "from":"mu", "product_version":"1.1.1.0"}\' https://10.10.10.10:80/test
4、无参post请求
curl -d "" https://10.10.10.10:80/test
curl和wget区别
curl模拟的访问请求一般直接在控制台显示,而wget则把结果保存为一个文件。如果结果内容比较少,需要直接看到结果可以考虑使用curl进行模拟请求,如果返回结果比较多,则可考虑wget进行模拟请求。
原文链接:
以上是关于Linux命令发送Http GET/POST请求的主要内容,如果未能解决你的问题,请参考以下文章
linux curl命令的重要用法:发送GET/POST请求,获取网页内容