Reputation:
Till 9.x, the headers were under the resources in the Developer Tools, but now I can't find it anywhere.
Upvotes: 631
Views: 912170
Reputation: 165
In Chrome, Right-click on the screen and select inspect
select the Network Tab
and then press Ctrl + R
You can see Name, Header, Response, and other tabs
Upvotes: 10
Reputation: 11578
I know there is an accepted answer but I recommend
Talend API Tester - REST Client Extension for Chrome.
example:
Response shows headers in the same way as petition
Upvotes: 9
Reputation: 4467
To view the request or response HTTP headers in Google Chrome, take the following steps :
https://www.google.com
), right click, select Inspect to open the developer tools. Upvotes: 5
Reputation: 121
For Version 78.0.3904.87, OS = Windows 7, 64 bit PC
Steps:
Upvotes: 1
Reputation: 398
For me, as of Google Chrome Version 46.0.2490.71 m, the Headers info area is a little hidden. To access:
While the browser is open, press F12 to access Web Developer tools
When opened, click the "Network" option
Initially, it is possible the page data is not present/up to date. Refresh the page if necessary
Observe the page information appears in the listing. (Also, make sure "All" is selected next to the "Hide data URLs" checkbox)
Upvotes: 31
Reputation: 2512
You can find the headers option in the Network tab in Developer's console in Chrome:
Also, in my version of Chrome (50.0.2661.102), it gives an extension named LIVE HTTP Headers which gives information about the request headers for all the HTTP requests.
update: added image
Upvotes: 12
Reputation: 1362
My favorite way in Chrome is clicking on a bookmarklet:
javascript:(function(){function read(url){var r=new XMLHttpRequest();r.open('HEAD',url,false);r.send(null);return r.getAllResponseHeaders();}alert(read(window.location))})();
Put this code in your developer console pad.
Source: http://www.danielmiessler.com/blog/a-bookmarklet-that-displays-http-headers
Upvotes: 28
Reputation: 102755
I'm not sure about your exact version, but Chrome has a tab "Network" with several items and when I click on them I can see the headers on the right in a tab.
Press F12 on windows or ⌥⌘I on a mac to bring up the Chrome developer tools.
Upvotes: 903
Reputation: 883
I loved the FireFox Header Spy extension so much that i built a HTTP Spy extension for Chrome. I used to use the developer tools too for debugging headers, but now my life is so much better.
Here is a Chrome extension that allows you to view request-, response headers and cookies without any extra clicks right after the page is loaded.
It also handles redirects. It comes with an unobtrusive micro-mode that only shows a hand picked selection of response headers and a normal mode that shows all the information.
https://chrome.google.com/webstore/detail/http-spy/agnoocojkneiphkobpcfoaenhpjnmifb
Enjoy!
Upvotes: 21