Narayanan
Narayanan

Reputation: 115

HTTP 2.0 Over the Wire (Raw)

Are there any tools to see what is coming through the wire (Raw request and response) for HTTP 2.0? I used Fiddler and saw only HTTP 1.1 data.

I enabled HTTP 2.0 / SPDY in Chrome and visited https://http2.akamai.com to see the request and response.

Upvotes: 5

Views: 3724

Answers (1)

rluta
rluta

Reputation: 6907

Wireshark has support for HTTP/2.0 (https://wiki.wireshark.org/HTTP2)

You can also simply check the frames using the built-in Chrome packet monitor.

Open a tab to chrome://net-internals, select 'SPDY' (or 'HTTP/2' in most recent versions) in the top left menu and click 'View live SPDY sessions' or 'View live HTTP/2 sessions'.

Whenever another tab is using a new SPDY or HTTP/2 connection, you'll be able to inspect the stream details from this tab.

Upvotes: 6

Related Questions