vote up 13 vote down star
3

...instead of using the Atom syndication format?

Atom is a well-defined, general-purpose XML syndication format. RSS is fractured into four different versions. All the major feed readers have supported Atom for as long as I can remember, so why isn't its use more prevalent?

Worst of all are sites that provide feeds in both formats - what's the point?!

  • UPDATE (18 August): Interestingly, this site itself is using Atom for its feeds rather than RSS.
flag

Errh... The StackOverflow blog uses RSS2.0, while the main-site uses Atom... How about a little consistency...? – Thomas Hansen Nov 23 '08 at 20:00

11 Answers

vote up 72 vote down check

The fundamental thing that the Atom creators didn't understand (and that the Atom supporters still don't understand), is that Atom isn't somehow separate from RSS. There's this idea that RSS fractured, and that somehow Atom fixes that problem. But it doesn't. Atom is just another RSS splinter. A new name doesn't change the fact that it's just one more standard competing to do the same job, a job for which any of the competing standards are sufficient.

No one outside a fairly small group of people care at all which standard is used. They just want it to work. Atom, RSS 2.0, RSS 1.0, RSS 401(k), whatever. As long as it works, the users are happy. The RSS "brand" very much defines the entire feed category, though, so on the rare occasion that someone does know enough to choose, they will tend to choose RSS, because it's got "the name." They will also tend to choose RSS 2.0, because it's got the bigger number.

RSS, and especially RSS 2.0, are very much entrenched in the feed "industry." Atom hasn't taken off because it doesn't bring much except a new name. Why switch away from RSS when it works just fine? And why even bother using Atom on new projects if RSS is sufficient? Switching to a new feed format mostly means extra time spent learning the new format.

If nothing else Apple's exclusive use of RSS 2.0 for podcasts means that RSS 2.0 is here for the foreseeable future.

link|flag
Tim Bray has a good reason why Atom is needed: tbray.org/ongoing/When/… – Mark Cidade Oct 13 '08 at 1:40
And I think that to say Atom hasn't taken off is an exaggeration. Atom is used in countless places on the web. For example, every Blogger.com account defaults to Atom. Additionally, the AtomPub publishing format is being taken up by the likes of Google and Microsoft as their standard REST protocol. – Brian Vallelunga Nov 14 '08 at 17:42
It's not true about iTunes. I've tested v8 with this feed: zacharycrockett.com/audio/dsandler.atom and it worked. I serve Atom feeds exclusively on a few sites and haven't heard anybody complain. – porneL Nov 26 '08 at 21:19
vote up 23 vote down

If you are asking why the Atom syndication format is not more widely adopted than the various versions of the RSS format, I think it would be difficult to come to an objective answer. A variety of factors like the amount of investment in RSS prior to Atom, the relative ease in implementing RSS versus Atom, and 'marketing' all come into play.

I can, however, think of a few things that should be considered when choosing what syndication format to use in representing resources:

Atom

  • Atom is an official Internet standards track protocol.
  • Atom has a registered content media type for its feed and entry representations.
  • Without the use of syndication extensions Atom tends to be a more robust format, especially in the link relations arena.
  • Representing resources using Atom allows you to leverage the Atom Publishing Protocol (AtomPub) to provide a RESTful API.
  • The RFC-3339 DateTime format used by Atom is easy to parse.
  • There is only one deprecated version of Atom (0.3) you might conceivably have to support.
  • Implementing Atom typically takes more time to do correctly than RSS, as there are more restrictions and the technical specification can be a bit dense.

RSS

  • RSS is a relatively simple format to implement in a short amount of time.
  • There are not as many constraints/rules placed on RSS as there are on Atom.
  • RSS is not an official Internet standards track protocol. However, RSS has enough adoption that you can reasonably expect it to be consumable by a variety of clients.
  • As there are quite a few 'deprecated' versions of RSS, you might conceivably have to support RSS feeds that vary quite a bit in their formatting details.
  • RSS does not have a registered media content type. However enough publishers use the same unregistered content type that it is almost a defacto MIME type.
  • The RFC-822 DateTime format utilized by RSS is more difficult to parse as this particular timestamp format allows a lot more possible variation in the format that is still considered valid.
  • You will need to extend the RSS format using a variety of published syndication extensions when you start trying to represent resources with complex link relations.

I think it is important to remember that to the end-user, what syndication format you choose to use is not very important, as most feed readers and browsers handle either format equally well. The choice of syndication format however can be very important to the developer, as there are technical details that can impact the software development side of things.

link|flag
+1 for simplicity of RSS. I wanted to implement a feed for my website and after researching both formats, I found RSS 2.0 to be far simpler to implement (or even understand). But in retrospect, RSS wasn't good enough (I needed XHTML support), so I wish I'd gone with Atom from the beginning. – David Jul 19 at 2:46
vote up 1 vote down

The same reason that people are HTML 4 loose, strict, XHTML transitional, XHTML strict, etc. Legacy code / working with what you already know.

Besides, both formats have their merits. Better to support a couple different formats than have one be-all-end-all-subscribe-to-everything feed that becomes bloated.

link|flag
vote up 1 vote down

Because for the majority of purposes either will work, and RSS has the advantage of being the acronym that defines the category.

Beyond that you would have to email individual sites and ask them.

link|flag
vote up 1 vote down

For the same reason that every "better" solution did not succeed for mass market. RSS is widely deployed and it solves the same problem Atom is trying to solve.

Personaly, I have a large number of RSS feeds that I generate myself. They are working today and solving a problem. I wonder how you could convince me to rewrite all those feeds to Atom just to use a "better" format.

Now if you consider how the REST architecture is gaining visibility these days because of better and simpler caching and scalability, these are real arguments. I understand that Atom is closely related to the REST hype and it may be the best way to market it. As REST will be gaining visibility, so are its related formats like Atom.

link|flag
vote up 1 vote down

Vincent, I'm not suggesting that anyone rewrite existing RSS feeds just for the sake of it, that would be a big waste of time! In terms of RSS being the acronym that defines the category, I'm guessing that most users now identify with the orange feed icon, rather than the specific flavour of XML behind it.

link|flag
vote up 1 vote down

Worse is better.

link|flag
In case the down-voters didn't get the reference -- Jeff Atwood on 'worse is better': codinghorror.com/blog/archives/… – OtherMichael Jan 15 at 20:07
vote up 1 vote down

The 'why' was fairly well answered, but I would suggest going forward that developers only implement Atom on sites. There's no reason to have multiple formats for a site available and any modern feed client can now parse Atom feeds.

Atom has quite a few technical advantages over RSS and is being widely supported and utilized by major companies such as Google and Microsoft.

As for branding, I don't really care what acronym is used. I think the universal orange broadcast icon or the word "feed" is what people care about. Despite the proliferation of RSS and Atom feeds, I'd say the average web user still has no idea what they are. Looking at it in that way, the whole concept of syndication feeds is still in its infancy.

link|flag
vote up 0 vote down

There are a lot of RSS feed readers out there that people are used to using, and most importantly, RSS is very well known and has been around much longer. Why mess with something if it works?

link|flag
vote up 0 vote down

Because the developers of sed sights got reemed from their marketing manager that they were "excluding" people by not providing rss. Since Mr. Marketing has never heard of Atom, you just provide both.

If you are restfully implementing it, its not a big deal to just do both and not get yelled at by other departments.

link|flag
vote up 0 vote down

Wikipedia knows best.

link|flag
It might be useful to include some background on this, rather than just a link. I'm not sure people always want to click without some kind of reference and reason to. – Kevin Elliott Jul 8 at 7:34

Your Answer

Get an OpenID
or

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