Several of our users have asked us to include data relative to their account in the HTTP headers of requests we send them, or even responses they get from our API. What is the general convention to add custom HTTP headers, in terms of naming, format... etc.

Also, feel free to post any smart usage of these that you stumbled upon on the web; We're trying to implement this using what's best out there as a target :)

link|improve this question

feedback

4 Answers

up vote 45 down vote accepted

The normal approach was to start their name with "X-". E.g. X-Forwarded-For, X-Requested-With. This is also mentioned in section 5 of RFC 2047.


Update: On October 24, 2011, an IETF draft was posted to deprecate the use of the "X-" prefix for non-standard headers. The reason is that when non-standard headers prefixed with "X-" become standard, removing the "X-" prefix breaks backwards compatibility, forcing application protocols to support both names (E.g, x-gzip & gzip are now equivalent.). So, the recommendation is to just name them sensibly without the "X-" prefix.

link|improve this answer
Just an X? What about case? Looks like it should be camelized? Also, what about the format on the value itself? Text, JSON, anything? – Julien Genestoux Aug 24 '10 at 22:04
2  
It's case-insensitive. As to the content, as long as it is ASCII, you can in fact just put anything in. You can consider to URL-encode or Base64-encode non-ASCII characters resp. bytes. – BalusC Aug 24 '10 at 22:06
IIRC, HTTP headers are ISO-8859-1 rather than ASCII, and there's also a highly arcane escape mechanism to express characters in other encodings. Probably sensible to stick to ASCII for interoperability, though. – Tom Anderson Aug 24 '10 at 22:10
3  
Do Not use X-. See: tools.ietf.org/html/draft-ietf-appsawg-xdash – Mark Nottingham Nov 16 '11 at 2:00
1  
@Mark: I included it in my answer. – BalusC Nov 16 '11 at 2:12
show 11 more comments
feedback

The header field name registry is defined in RFC3864, and there's nothing special with "X-".

As far as I can tell, there are no guidelines for private headers; in doubt, avoid them. Or have a look at the HTTP Extension Framework (RFC 2774).

It would be interesting to understand more of the use case; why can't the information be added to the message body?

link|improve this answer
Thanks for the links, I realize that custom headers is not an ideal solution, I just thought that the 'x-' prefix had become an accepted community convention. – Darrel Miller Aug 25 '10 at 12:12
2  
I think they are an accepted community convention, even if it's not (yet) reflected in the RFC. – Kylar Aug 25 '10 at 16:34
Special support for "X-" was removed on purpose; because it doesn't work in practice. Once a name is in use on the public internet, you won't rename it anyway. – Julian Reschke Aug 28 '10 at 21:44
1  
Can please you add a link to a document discussing the removal of "X-"? – user359996 Nov 4 '10 at 18:46
1  
show 1 more comment
feedback

The format for HTTP headers is defined in the HTTP specification. I'm going to talk about HTTP 1.1, for which the specification is RFC 2616. In section 4.2, 'Message Headers', the general structure of a header is defined:

   message-header = field-name ":" [ field-value ]
   field-name     = token
   field-value    = *( field-content | LWS )
   field-content  = <the OCTETs making up the field-value
                    and consisting of either *TEXT or combinations
                    of token, separators, and quoted-string>

This definition rests on two main pillars, token and TEXT. Both are defined in section 2.2, 'Basic Rules'. Token is:

   token          = 1*<any CHAR except CTLs or separators>

In turn resting on CHAR, CTL and separators:

   CHAR           = <any US-ASCII character (octets 0 - 127)>

   CTL            = <any US-ASCII control character
                    (octets 0 - 31) and DEL (127)>

   separators     = "(" | ")" | "<" | ">" | "@"
                  | "," | ";" | ":" | "\" | <">
                  | "/" | "[" | "]" | "?" | "="
                  | "{" | "}" | SP | HT

TEXT is:

   TEXT           = <any OCTET except CTLs,
                    but including LWS>

Where LWS is linear white space, whose definition i won't reproduce, and OCTET is:

   OCTET          = <any 8-bit sequence of data>

There is a note accompanying the definition:

The TEXT rule is only used for descriptive field contents and values
that are not intended to be interpreted by the message parser. Words
of *TEXT MAY contain characters from character sets other than ISO-
8859-1 [22] only when encoded according to the rules of RFC 2047
[14].

So, two conclusions. Firstly, it's clear that the header name must be composed from a subset of ASCII characters - alphanumerics, some punctuation, not a lot else. Secondly, there is nothing in the definition of a header value that restricts it to ASCII or excludes 8-bit characters: it's explicitly composed of octets, with only control characters barred (note that CR and LF are considered controls). Furthermore, the comment on the TEXT production implies that the octets are to be interpreted as being in ISO-8859-1, and that there is an encoding mechanism (which is horrible, incidentally) for representing characters outside that encoding.

So, to respond to @BalusC in particular, it's quite clear that according to the specification, header values are in ISO-8859-1. I've sent high-8859-1 characters (specifically, some accented vowels as used in French) in a header out of Tomcat, and had them interpreted correctly by Firefox, so to some extent, this works in practice as well as in theory (although this was a Location header, which contains a URL, and these characters are not legal in URLs, so this was actually illegal, but under a different rule!).

That said, i wouldn't rely on ISO-8859-1 working across all servers, proxies, and clients, so i would stick to ASCII as a matter of defensive programming.

link|improve this answer
I'd give you a +1, but this doesn't address the OP's question. Since it's so useful, why don't you create a new question and provide this as an answer? – user359996 Nov 4 '10 at 18:49
1  
You can always vote up my comment on @BalusC's answer which prompted this non-answer. I'm not sure about creating a question just to answer it myself - that seems like poor form. But if you really think it's that useful, you could always create the question, and i could answer it. Not that i'm nakedly rep-whoring here at all. – Tom Anderson Nov 4 '10 at 20:11
feedback

Modifying, or more correctly, adding additional HTTP headers is a great code debugging tool if nothing else.

When a URL request returns a redirect or an image there is no html "page" to temporarily write the results of debug code to - at least not one that is visible in a browser.

One approach is to write the data to a local log file and view that file later. Another is to temporarily add HTTP headers reflecting the data and variables being debugged.

I regularly add extra HTTP headers like X-fubar-somevar: or X-testing-someresult: to test things out - and have found a lot of bugs that would have otherwise been very difficult to trace.

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.