Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7

What do these 'q=%f' mean?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

This is called a relative quality factor. It specifies what language the user would prefer, on a scale of 0 to 1, as can be seen from the HTTP/1.1 Specification, §14.4:

Each language-range MAY be given an associated quality value which represents an estimate of the user's preference for the languages specified by that range. The quality value defaults to "q=1". For example,

  Accept-Language: da, en-gb;q=0.8, en;q=0.7

would mean: "I prefer Danish, but will accept British English and other types of English."

link|improve this answer
Accept-Charset has q-values in the example as well. :) – bzlm Dec 18 '11 at 16:10
Very nice, thanks! But why not just list them in the order of preference? – o_O Tync Dec 18 '11 at 16:12
2  
@o_OTync: It's difficult to indicate explicit anti-preference with such a system. – Lightness Races in Orbit Dec 18 '11 at 16:14
So what exactly does it mean to accept 80% qualitied en-gb? – Pacerier Jan 18 at 7:08
@Pacerier: It means that, in the case that your website is multilingual, the user would prefer the content to be served in British English, rather than American English. – Tim Cooper Jan 18 at 13:18
feedback

It is called the relative quality factor in the specification:

Each media-range MAY be followed by one or more accept-params, beginning with the "q" parameter for indicating a relative quality factor. The first "q" parameter (if any) separates the media-range parameter(s) from the accept-params. Quality factors allow the user or user agent to indicate the relative degree of preference for that media-range, using the qvalue scale from 0 to 1 (section 3.9). The default value is q=1.

...

The example

Accept: audio/*; q=0.2, audio/basic

SHOULD be interpreted as "I prefer audio/basic, but send me any audio type if it is the best available after an 80% mark-down in quality."

See also:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.