linux下使用shell发送http请求
Posted sea-stream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下使用shell发送http请求相关的知识,希望对你有一定的参考价值。
1. get请求 curl命令默认下就是使用get方式发送http请求。 curl www.baidu.com 2. post请求 使用-d参数,形式如下: curl -d "param1=value1¶m2=value2" www.baidu.com 其他参数 -I 只显示头部信息。 i 显示全部信息。 -v 显示解析全过程。
参考:
https://blog.csdn.net/bcfdsagbfcisbg/article/details/78603781
以上是关于linux下使用shell发送http请求的主要内容,如果未能解决你的问题,请参考以下文章