curl命令常用用法

2020-12-22 09:26

阅读:766

标签:过程   proxy   ref   内容   指定   进度   常用用法   https   other   

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命令常用用法

标签:过程   proxy   ref   内容   指定   进度   常用用法   https   other   

原文地址:https://www.cnblogs.com/Durant0420/p/14002534.html

上一篇:views.jsp

下一篇:vue.js组件使用components


评论


亲,登录后才可以留言!