美文网首页
curl 详解

curl 详解

作者: cityhash123 | 来源:发表于2017-02-04 14:58 被阅读0次

curl 详解

--compressed

--compressed
  (HTTP) Request a compressed response using one of the algorithms
  curl  supports,  and  save  the  uncompressed document.  If this
  option is used and the server  sends  an  unsupported  encoding,
  curl will report an error.
  1. 不指定 header 头,请求返回的结果没有经过压缩
curl -v -o /tmp/ps.js http://e.test.com/assets/vendor/pf/p.js
  1. 保存 /tmp/ps.js 是被gzip压缩过的
curl -v -o /tmp/ps.js http://e.test.com/assets/vendor/pf/p.js -H 'Accept-Encoding: gzip, deflate, sdch'
  1. 使用 --compressed 将会保存解压后的文档到 /tmp/ps.js
curl -v -o /tmp/ps.js http://e.test.com/assets/vendor/pf/p.js -H 'Accept-Encoding: gzip, deflate, sdch' --compressed
  1. 使用 --compressed 将会保存解压后的文档到 /tmp/ps.js,请求头中会添加如下设置: Accept-Encoding: deflate, gzip
curl -v -o /tmp/ps.js http://e.test.com/assets/vendor/pf/p.js --compressed

相关文章

  • shell调用kylo API

    参考:curl命令详解 yum install -y jq

  • curl命令详解

    linux命令之curl curl命令详解 1、curl命令简介 curl命令是一个利用URL规则在命令行下工作的...

  • CURL的使用详解

    CURL的使用详解 发起GET请求 命令后直接跟地址curl 'https://www.baidu.com' 请求...

  • Linux curl

    Linux curl命令详解 命令:curl 在Linux中curl是一个利用URL规则在命令行下工作的文件传输工...

  • CURL详解

    转载:https://www.cnblogs.com/manongxiaobing/p/4698990.html

  • curl 详解

    【php中的curl】php中curl的详细解说 转载2014年03月19日 14:38:05 124700 这几...

  • curl 详解

    curl 详解 --compressed 不指定 header 头,请求返回的结果没有经过压缩 保存 /tmp/p...

  • CURL

    PHP使用CURL详解 CURL是一个非常强大的开源库,支持很多协议,包括HTTP、FTP、TELNET等,我们使...

  • PHP使用CURL详解

    PHP使用CURL详解 Curl是一个非常强大的开源库,支持很多协议,包括HTTP、FTP、TELNET等,我们使...

  • 7.CURL命令的基本使用

    curl 命令详解~~ 直接在 curl 命令后加上网址,就可以看到网页源码 网页保存下来,可以使用 -o 参数 ...

网友评论

      本文标题: curl 详解

      本文链接:https://www.haomeiwen.com/subject/wynjittx.html