curl命令常用用法
Posted durant0420
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl命令常用用法相关的知识,希望对你有一定的参考价值。
1、proxy support
curl -x 127.0.0.1:8888 https://www.baidu.com/
2、get
-G:使用get请求
-d:指定请求数据
curl https://www.baidu.com
curl -G https://www.baidu.com
curl -X GET https://www.baidu.com
3、post
-d:指定post请求体
curl -d ‘login=1234‘ https://www.baidu.com
curl -X POST https://www.baidu.com
4、other
保存响应内容
curl -o tmp.html https://www/baidu.com
输出通信的整个过程
curl -v https://www.baidu.com
不输出错误和进度信息
curl -s https://www.baidu.com
以上是关于curl命令常用用法的主要内容,如果未能解决你的问题,请参考以下文章