Is one MIME type preferable to ensure compatibility with RSS readers and other scrapers?

The options seem to be:

  • text/xml
  • text/rss+xml

Interestingly Stackoverflow is using text/html.

link|improve this question

feedback

4 Answers

up vote 47 down vote accepted

Neither. It's application/rss+xml http://www.rssboard.org/rss-mime-type-application.txt

link|improve this answer
Man, you're quick off the trigger! +1 – Cerebrus Feb 27 '09 at 17:04
slow day at work ;-) – vartec Feb 27 '09 at 17:05
feedback

You could use text/xml, but the correct MIME type would be application/rss+xml.

link|improve this answer
feedback

Go for MIME application/rss+xml to be safe if you want to make sure your feed is compatible with RSS readers and other scrapers. That's what I use.

link|improve this answer
feedback

Other commenters have pointed out that the single correct mime type.

However if you are setting an accept header (which is often why you want this) then application/rss+xml, application/rdf+xml, application/atom+xml, application/xml, text/xml is a better choice as it states that it accepts RSS, ATOM, XML and in what preferred order.

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.