J
Jon Gómez
Thomas said:kangax said:IIRC, Firebug (at least, recent versions) also displays response headersThomas said:Andrew Poulos wrote:
Thomas 'PointedEars' Lahn wrote:
Andrew Poulos wrote:
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
May I presume the HTTP Content-Type header looks the same?
I don't know how to tell.
Search for "HTTP sniffer", or get an OS (even Cygwin will suffice) and run
`HEAD http://my.server.example/path' (should be in the `libwww-perl'
package). Or use `telnet my.server.example 80', wait for the welcome
message and type `HEAD /path HTTP/1.0<CR<LF><CR><LF>'. Or, if you need to
do it "the JavaScript way":
[XHR]
in a "Net" tab under "Headers" tab of a single request (after collapsing
it). It shows both request and response ones.
But that would be so boring ... ;-)
PointedEars
I myself tend to use cURL. Should I switch to telnet?
Jon.