I recently came across this Facebook application by the BBC:
https://apps.facebook.com/bbcnewsnew
At first glance it doesn't look like much until I realized that Liking one of the categories will actually aggregate the content of the BBC news website into your Facebook News Feed.
For a few days now I have been trying to understand how this works. It seems that the Like buttons on the page are simply pointing to a page on the BBC website, e.g. http://www.bbc.co.uk/news/world/asia and from this Facebook seems to understand that it needs to aggregate the RSS from here: http://www.bbc.co.uk/news/world/asia/rss.xml
It seems that the rel="alternate" in the page takes care of this:
<link rel="alternate" type="application/rss+xml" href="http://www.bbc.co.uk/news/world/asia/rss.xml" />
When I set up an RSS feed of my own and use a tag like that in my page header, Google Reader will understand that it needs to grab the RSS feed.
However, I'd like this to work on the Facebook News Feed. Does anyone have any idea how to achieve this?