码迷,mamicode.com
首页 > Web开发 > 详细

curl命令常用用法

时间:2020-11-23 12:19:38      阅读:14      评论:0      收藏:0      [点我收藏+]

标签:过程   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!