vote up 1 vote down star
1

I developed a web app that responds with data in the format as specified by the client in the HTTP Accept Headers. Everything worked fine while using Firefox, but when I wanted to check my CSS / HTML on Chrome and IE, both of them wanted to download the index page, as if it's an unknown content type.

After some research I found this article, which states that IE sends out a lot of crud in it's HTTP Accept headers, amongst others a list of image/* content types right at the start.

This caused my web app to try to send the index page as an image/jpeg.

So how do I know when to ignore and when to use the Accept Headers?

flag

69% accept rate
What content-type does your application choose if you try to access the page with IE? Even if IEs Accept header may be broken, it should still match "text/html". – trendels Sep 9 at 12:03
It matches against image/jpeg, as the app can serve images as well. It's in the question :P – Jrgns Sep 9 at 13:57
OK, I assumed that the index page would only exist as HTML. – trendels Sep 9 at 15:54

1 Answer

vote up 0 vote down

I would simply keep a blacklist of programs that send obviously broken Accept headers, like IE and Safari (according to the article). If the User-Agent header matches the blacklist, ignore the Accept header, otherwise don't.

The problem with IEs Accept header is not that it puts image/* at the start, but that it doesn't indicate that it prefers HTML or XHTML over images (via the q parameter). AFAIK, the order of the elements in the Accept header is not significant.

link|flag
Whitelist: Yea, true, the only problem is that User-Agent headers are sometimes untrustworthy, so I try to stay away from them. Order of elements: The parser I use assumes that if no preference is given, the first takes precedence. – Jrgns Sep 9 at 14:00

Your Answer

Get an OpenID
or

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