curl命令常用用法
2020-12-22 09:26
标签:过程 proxy ref 内容 指定 进度 常用用法 https other 1、proxy support 2、get 3、post 4、other curl命令常用用法 标签:过程 proxy ref 内容 指定 进度 常用用法 https other 原文地址:https://www.cnblogs.com/Durant0420/p/14002534.html
curl -x 127.0.0.1:8888 https://www.baidu.com/
-G:使用get请求
-d:指定请求数据
curl https://www.baidu.com
curl -G https://www.baidu.com
curl -X GET https://www.baidu.com
-d:指定post请求体
curl -d ‘login=1234‘ https://www.baidu.com
curl -X POST https://www.baidu.com
保存响应内容
curl -o tmp.html https://www/baidu.com
输出通信的整个过程
curl -v https://www.baidu.com
不输出错误和进度信息
curl -s https://www.baidu.com
上一篇:views.jsp