我可以使用CURL获取HTTP/2头吗



现在我使用curl -I来检索标头。

在浏览器即将采用HTTP/2的情况下,站点是否会采用不同的方式来使用HPACK提供头,这将使我对curl命令的使用无效?

是的,您可以像使用HTTP/1一样使用curl来查看和发送HTTP/2的HTTP标头。

curl支持HTTP/2,它被实现为一种翻译层。这意味着它显示和";假装";标题以1.1风格工作。它将标题显示为文本,并在回调中发送标题,就像在1.1中一样。我们通过这种方式使脚本和应用程序获得一个非常平滑且基本上不可见的到HTTP/2的curl转换路径。

当然,在内部,这是通过在显示接收到的标头之前解压缩它们,并在发送它们时在压缩它们之前显示它们来完成的。

我相信这取决于curl版本。HTTP/2是在curl 7.36.x IIRC中添加的?不是所有的发行版都会有那个版本?

这是基于HTTP/2的curl 7.41.0https://google.com

curl --http2 -I -v https://google.com
* Rebuilt URL to: https://google.com/
*   Trying 173.194.123.1...
* Connected to google.com (173.194.123.1) port 443 (#0)
* ALPN, offering h2-14, http/1.1
* ALPN, server accepted to use h2-14
* Server certificate:
*        subject: C=US; ST=California; L=Mountain View; O=Google Inc; CN=*.google.com
*        start date: 2015-03-11 16:13:43 GMT
*        expire date: 2015-06-09 00:00:00 GMT
*        subjectAltName: google.com matched
*        issuer: C=US; O=Google Inc; CN=Google Internet Authority G2
*        SSL certificate verify ok.
* Using HTTP2    

edit:correction,curl--http2需要编译nghttp 2才能工作https://nghttp2.org/

curl --version 
curl 7.41.0 (x86_64-unknown-linux-gnu) libcurl/7.41.0 OpenSSL/1.0.2b zlib/1.2.8 nghttp2/0.7.8-DEV
Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp 
Features: AsynchDNS IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP HTTP2 UnixSockets 

相关内容

  • 没有找到相关文章

最新更新