RSS Feed: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 13: Line 13:
* getting at a [http://thenextweb.com/twitter/2011/06/23/how-to-find-the-rss-feed-for-any-twitter-user/ Twitter] rss feed
* getting at a [http://thenextweb.com/twitter/2011/06/23/how-to-find-the-rss-feed-for-any-twitter-user/ Twitter] rss feed


Detecting feeds
=== Finding feeds embedded in an HTML page ===
 
If you view the "[http://en.wikipedia.org/wiki/Special:RecentChanges Recent Changes]" page of Wikipedia, and view the source you will find something like the following:
<source lang="html4strict">
<source lang="html4strict">
<link rel="alternate" type="application/atom+xml" title="&quot;Special:RecentChanges&quot; Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
<link rel="alternate" type="application/atom+xml" title="&quot;Special:RecentChanges&quot; Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
</source>
</source>
Similarly, viewing the source of an Article's change [http://en.wikipedia.org/w/index.php?title=Software_development_process&action=history history] reveals a [http://en.wikipedia.org/w/index.php?title=Software_development_process&feed=atom&action=history feed].


== Examples ==
== Examples ==
[[Die Zeit]]
[[Die Zeit]]
[[:Category:RSS]]
[[Category:RSS]]

Latest revision as of 10:48, 8 October 2012

RSS Feeds are way of publishing lists on the web, such as the latest posts to a blog, or audio files of a podcast. RSS originally meant RDF Site Summary, and was popularized by Dave Winer and the blogging communtiy as Really Simple Syndication, is now said to stand for Rich Site Summary. RSS is designed to make it easy for software, like a "pod catcher" or a feed reader to automatically collect and download information from websites that a user has "subscribed" to. Feeds can be useful to write scripts that use public websites as services to request, for instance, the latest images added to Flickr with a given tag, or to search a set of news sites for their last headlines.

Some examples of public feeds

Finding feeds embedded in an HTML page

If you view the "Recent Changes" page of Wikipedia, and view the source you will find something like the following:

<link rel="alternate" type="application/atom+xml" title="&quot;Special:RecentChanges&quot; Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />

Similarly, viewing the source of an Article's change history reveals a feed.

Examples

Die Zeit