bash – 如何在使用curl时正确处理gzip压缩的网页?

前端之家收集整理的这篇文章主要介绍了bash – 如何在使用curl时正确处理gzip压缩的网页?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我写了一个bash脚本,从网站使用curl获取输出,并在html输出上做了一堆字符串操作。问题是当我运行它的一个网站,它返回其输出gzipped。在浏览器中访问网站工作正常。

当我手动运行curl,我得到gzipped输出

$ curl "http://example.com"

以下是该网站的标题

HTTP/1.1 200 OK
Server: Nginx
Content-Type: text/html; charset=utf-8
X-Powered-By: PHP/5.2.17
Last-Modified: Sat,03 Dec 2011 00:07:57 GMT
ETag: "6c38e1154f32dbd9ba211db8ad189b27"
Expires: Sun,19 Nov 1978 05:00:00 GMT
Cache-Control: must-revalidate
Content-Encoding: gzip
Content-Length: 7796
Date: Sat,03 Dec 2011 00:46:22 GMT
X-Varnish: 1509870407 1509810501
Age: 504
Via: 1.1 varnish
Connection: keep-alive
X-Cache-Svr: p2137050.pubip.peer1.net
X-Cache: HIT
X-Cache-Hits: 425

我知道返回的数据是gzipped,因为这返回html,如预期:

$ curl "http://example.com" | gunzip

我不想管道输出通过gunzip,因为脚本工作原样在其他网站,通过gzip管道会破坏那个功能

我试过的

>更改user-agent(我尝试过浏览器发送的同一个字符串,“Mozilla / 4.0”等)
>男人卷曲
> google search
>搜索stackoverflow

一切都来了空

有任何想法吗?

curl将自动解压缩响应,如果设置了–compressed标志:
curl --compressed "http://example.com"

–compressed
(HTTP) Request a compressed response using one of the algorithms libcurl supports,and save the uncompressed document. If this option is used and the server sends an unsupported encoding,curl will report an error.

gzip最有可能被支持,但你可以通过运行curl -V并在“Features”行中查找libz来检查这一点:

$ curl -V
...
Protocols: ...
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz

注意,这是真正的问题的网站是在这里的错误。如果curl没有通过Accept-Encoding:gzip请求头,则服务器不应该发送压缩响应。

原文链接:https://www.f2er.com/bash/392291.html

猜你在找的Bash相关文章