1 / 3

Creating RSS Feeds

Creating RSS Feeds. Mark Branom, IT Services Tech Briefing http://techbriefing.stanford.edu/ October 3, 2008. Creating RSS Feeds. <?xml version="1.0"?> <rss version="2.0"> <channel> <title>Title of Feed Goes Here</title> <description>Description of Feed Goes Here</description>

henry
Download Presentation

Creating RSS Feeds

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Creating RSS Feeds Mark Branom, IT Services Tech Briefing http://techbriefing.stanford.edu/ October 3, 2008

  2. Creating RSS Feeds <?xml version="1.0"?> <rss version="2.0"> <channel> <title>Title of Feed Goes Here</title> <description>Description of Feed Goes Here</description> <link>Link to the Feed Goes Here</link> <item> <title>Title of Item 1 Goes Here</title> <description>Description of Item 1 Goes Here</description> <link>Link to Item 1 Goes Here</link> </item> <item> <title>Title of Item 2 Goes Here</title> <description>Description of Item 2 Goes Here</description> <link>Link to Item 2 Goes Here</link> </item> </channel> </rss>

  3. Creating an Atom Feed <?xml version="1.0"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>Title of Feed Goes Here</title> <subtitle>SubTitle of Feed Goes Here</subtitle> <link href="http://LinkToTheFeedGoesHere"/> <updated>Today's Date</updated> <author> <name>Author's Full Name</name> <email>Author's Email</email> </author> <id>Identifying information For the Feed Goes Here</id> <entry> <title>Item 1 Title Goes Here</title> <link href="http://Item1LinkGoesHere"/> <id>Item 1's ID Goes Here</id> <updated>Item 1's Updated Date Goes Here</updated> <summary>Summary Text Goes Here</summary> </entry> <entry> <title>Item 2 Title Goes Here</title> <link href="http://Item2LinkGoesHere"/> <id>Item 2's ID Goes Here</id> <updated>Item 2's Updated Date Goes Here</updated> <summary>Summary Text Goes Here</summary> </entry> </feed>

More Related