I'm looking for an ie8-addon that displays the http headers like firebug or httpliveheaders do. Any advice is appreciated.
edit: I may be blind but it seems as if the built-in developer tools (F12) do not show the http headers.
I'm looking for an ie8-addon that displays the http headers like firebug or httpliveheaders do. Any advice is appreciated.
edit: I may be blind but it seems as if the built-in developer tools (F12) do not show the http headers.
IE8 comes with a developer tool, http://msdn.microsoft.com/en-us/library/dd565628(VS.85).aspx
Skip IE, use
curl
.This command will output the headers for google.com as if they were requested by IE8:
The options used are as follows:
-s
silent mode, so it doesn't show the progress meter.-A=...
specify the user agent you want to use (the example was IE8 on XP).-D -
dump header, the dash specifiesSTDOUT
.-o /dev/null
redirects the body of the response, so you don't see the html.You should see something like this:
You might be looking for Fiddler2