 |
Header Parameters
Header parameters are sent to the web server with each
request for a URL. They describe aspects of the user's
browser or operating system. Using Janus Web functions
we've parsed every header parameter your browser sends
and have presented them below:
|
Parameter Name
|
Parameter Value
|
|
METHOD
|
GET
|
|
URL
|
/demo/demo_header
|
|
HTTP
|
1.1
|
|
X-CC-ID
|
CCC02-01
|
|
HOST
|
WWW.SIRIUS-SOFTWARE.COM
|
|
USER-AGENT
|
CCBOT/1.0 (+HTTP://WWW.COMMONCRAWL.ORG/BOT.HTML)
|
|
ACCEPT
|
TEXT/HTML,APPLICATION/XHTML+XML,TEXT/XML;Q=0.9,TEXT/PLAIN;Q=0.8,IMAGE/PNG,*/*;Q=0.5
|
|
ACCEPT-LANGUAGE
|
EN-US,EN;Q=0.5
|
|
ACCEPT-ENCODING
|
GZIP
|
|
ACCEPT-CHARSET
|
ISO-8859-1,UTF-8;Q=0.7,*;Q=0.7
|
|
CONNECTION
|
close
|
|
CACHE-CONTROL
|
NO-CACHE
|
|
PRAGMA
|
NO-CACHE
|
How can you use header parameters? Well, if you
You can use it to figure out what browser the client is using,
so you can customize your site to particular browsers. You can
detect Java or Javascript capability and you can see what mime-type
encoding is being used with the sent page.
See the code
that analyzed the header and built this page.
Note that there are also browser characteristics that are not stored
in header parameters but can be queried via JavaScript function calls.
Some of thes are:
You can view the JavaScript program used to determine these settings
by looking at the source for this page.
|