Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple authors in RSS or Atoms

Tags:

rss

atom-feed

As far as I can see both Atom 1.0 and Rss 2.0 don't support multiple authors. What I want is just to double check with you guys whether there is a more or less standard way for including multiple authors except like so:

<author>Auhtor A., Author B.</author>
like image 201
Sergej Andrejev Avatar asked May 02 '11 10:05

Sergej Andrejev


People also ask

What is Atom link in RSS feed?

RSS/Atom feeds give good hints about where to find the most recently updated pages. If your website provides an RSS or Atom feed, our crawler will download it to find new links on your site to index first. This is particularly useful when Site Search is doing an incremental update of your website.

What is Atom data format?

The Atom Syndication Format is an XML language used for web feeds. The Atom Publishing Protocol (AtomPub or APP) is a simple HTTP-based protocol for creating and updating web resources.


2 Answers

While you may be right about RSS, Atom 1.0 does specify a format for listing multiple authors. It looks something like this:
<author>
  <name>Jane Doe</name>
</author>
<author>
  <name>John Doe</name>
</author>

Whether or not all feed readers handle that is a different matter. Both Safari 5 and Google Reader, for instance, display only the last author in the list. This may be because the interaction model and UI for these readers were designed with RSS in mind and so they neglect to support the more advanced features of Atom.

like image 188
quikchange Avatar answered Nov 17 '22 01:11

quikchange


Here is a good blog post about this:

http://www.xn--8ws00zhy3a.com/blog/2007/04/rss-email-addresses

Basically the answer is no, there is no standard format for multiple authors because there isn't even a standard format used for single authors. In fact, according to the RSS 2.0 standard, the <author> tag isn't for the name but for the email address of the author. They specify it in the format of [email protected] (John Doe) but there is not a set standard saying that is the way it must be. The basic consensus is that you cannot expect to parse this field. Since that is the case, you can list it any way you want and if someone is using the <author> tag, most likely they are just displaying it so you should be good to go.

like image 41
IAmTimCorey Avatar answered Nov 17 '22 00:11

IAmTimCorey