Questions tagged [rss]

Really Simple Syndication (RSS) is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format.

Really Simple Syndication (RSS) is a family of web content syndication formats used to publish frequently updated works — such as blog entries, news headlines, audio, and video — in a standardized format.

RSS is a dialect of XML. All RSS files must conform to the XML 1.0 specification, as published on the World Wide Web Consortium (W3C) website.

Useful Resources:

7700 questions
52
votes
2 answers

How do I make an RSS/Atom feed in Rails 3?

I'm pretty new to Rails 3, and I'm trying to make an RSS/Atom feed. I know about auto_discovery_link_tag, but what is the associated controller/action supposed to look like? Thanks!
simonista
  • 633
  • 1
  • 6
  • 6
50
votes
11 answers

How can I get started making a C# RSS Reader?

I have been wanting to make a RSS reader for a while now (just for fun), but I don't have the slightest idea of where to start. I don't understand anything about RSS. Are there any good tutorials on RSS and how to implement it in an application (not…
Kredns
  • 36,461
  • 52
  • 152
  • 203
48
votes
6 answers

URL format for Google News RSS feed

Google deprecated the old RSS feed URL format December 1st 2017 (deprecation notice), in addition to that they dropped the button in the Google News interface to generate a RSS URL (news mentioning this change). This means that there is no public…
Robin Andersson
  • 5,150
  • 3
  • 25
  • 44
45
votes
10 answers

Getting raw XML data from a Feedburner RSS feed

For an Android app I am currently working on, I would like to be able to parse raw XML data from an RSS feed and display it. The RSS feed in question uses Feedburner for publishing, and my Google-fu has so far given me nothing on how to get the raw…
SeanPONeil
  • 3,901
  • 4
  • 29
  • 42
44
votes
10 answers

What is the correct format for RSS feed pubdate?

I'm having trouble getting the date of my RSS Feed to run correctly. Do you know what the proper date to show it is? I have it stored in a field called creation_date in this format: 2012-08-14 10:17:12 Then i grab it: $pubDate =…
Thingamajig
  • 4,107
  • 7
  • 33
  • 61
43
votes
2 answers

RSS specification HTML code inside RSS feed

Is HTML code inside the tag compliant in RSS 2.0?
filype
  • 8,034
  • 10
  • 40
  • 66
42
votes
8 answers

RSS feed parser library in Python

I am looking for a good library in python that will help me parse RSS feeds. Has anyone used feedparser? Any feedback?
rahman.bd
  • 525
  • 1
  • 6
  • 13
41
votes
6 answers

How do I parse and convert DateTime’s to the RFC 822 date-time format?

How do I convert a DateTime structure to its equivalent RFC 822 date-time formatted string representation and parse this string representation back to a DateTime structure in .NET? The RFC-822 date-time format is used in a number of specifications…
Oppositional
  • 11,141
  • 6
  • 50
  • 63
41
votes
5 answers

What is the difference between and in RSS?

I have the feeling, in every RSS.xml file, both the pubDate and the lastBuildDate match. I am sure that this one, is not always true... So firstly, what is the difference between those two above? Secondly, the RSS readers, sort the content by Date,…
OrElse
  • 9,709
  • 39
  • 140
  • 253
40
votes
1 answer

EditText with suggestion list below

I want to implement a "Google instant" like list in my app. Having an editText on top and a list below it, that is updated every time the user types in a new character. Can you point me to the right direction? Is there any widget or anything that I…
mixkat
  • 3,883
  • 10
  • 40
  • 58
40
votes
12 answers

Why Are People Still Creating RSS Feeds?

...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…
John Topley
  • 113,588
  • 46
  • 195
  • 237
39
votes
6 answers

Reading non-standard elements in a SyndicationItem with SyndicationFeed

With .net 3.5, there is a SyndicationFeed that will load in a RSS feed and allow you to run LINQ on it. Here is an example of the RSS that I am loading: Title of…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/c#" class="post-tag grid--cell" title="show questions tagged 'c#'" rel="tag">c#</a> <a href="../../questions/tagged/rss" class="post-tag grid--cell" title="show questions tagged 'rss'" rel="tag">rss</a> <a href="../../questions/tagged/syndication-feed" class="post-tag grid--cell" title="show questions tagged 'syndication-feed'" rel="tag">syndication-feed</a> <a href="../../questions/tagged/syndication-item" class="post-tag grid--cell" title="show questions tagged 'syndication-item'" rel="tag">syndication-item</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Nov 26 '08 at 02:34">asked Nov 26 '08 at 02:34</time> <a href="../../users/24841/jared" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/24841.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Jared" /> </a> <div class="s-user-card--info"> <a href="../../users/24841/jared" class="s-user-card--link">Jared</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">5,977</li> <li class="s-award-bling s-award-bling__gold" title="10 gold badges">10</li> <li class="s-award-bling s-award-bling__silver" title="38 silver badges">38</li> <li class="s-award-bling s-award-bling__bronze" title="48 bronze badges">48</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-2705548"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>39</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status answered-accepted"> <strong>3</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/2705548/parse-rss-pubdate-to-date-object-in-java" class="question-hyperlink">Parse RSS pubDate to Date object in java</a></h3> <div class="excerpt">How can I parse a pubDate from a RSS feed to a Date object in java. The format in the RSS feed: Sat, 24 Apr 2010 14:01:00 GMT What I have at the moment: DateFormat dateFormat = DateFormat.getInstance(); Date pubDate =…</div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/java" class="post-tag grid--cell" title="show questions tagged 'java'" rel="tag">java</a> <a href="../../questions/tagged/date" class="post-tag grid--cell" title="show questions tagged 'date'" rel="tag">date</a> <a href="../../questions/tagged/rss" class="post-tag grid--cell" title="show questions tagged 'rss'" rel="tag">rss</a> <a href="../../questions/tagged/date-format" class="post-tag grid--cell" title="show questions tagged 'date-format'" rel="tag">date-format</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Apr 24 '10 at 18:00">asked Apr 24 '10 at 18:00</time> <a href="../../users/294835/derk" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/294835.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Derk" /> </a> <div class="s-user-card--info"> <a href="../../users/294835/derk" class="s-user-card--link">Derk</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">1,087</li> <li class="s-award-bling s-award-bling__gold" title="4 gold badges">4</li> <li class="s-award-bling s-award-bling__silver" title="17 silver badges">17</li> <li class="s-award-bling s-award-bling__bronze" title="19 bronze badges">19</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-1975442"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>39</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status "> <strong>5</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/1975442/how-does-rss-reader-know-that-a-feed-is-updated" class="question-hyperlink">How does RSS reader know that a feed is updated?</a></h3> <div class="excerpt">Just learning about this via youtube but could not find answer to my question of how reader knows there is an update. Is it like a Push in blackberry? </div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/rss" class="post-tag grid--cell" title="show questions tagged 'rss'" rel="tag">rss</a> <a href="../../questions/tagged/push" class="post-tag grid--cell" title="show questions tagged 'push'" rel="tag">push</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Dec 29 '09 at 16:19">asked Dec 29 '09 at 16:19</time> <a href="../../users/240303/mith" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/240303.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="Mith" /> </a> <div class="s-user-card--info"> <a href="../../users/240303/mith" class="s-user-card--link">Mith</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">391</li> <li class="s-award-bling s-award-bling__gold" title="1 gold badge">1</li> <li class="s-award-bling s-award-bling__silver" title="3 silver badge">3</li> <li class="s-award-bling s-award-bling__bronze" title="3 bronze badge">3</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="mln24"> <div class="question-summary" id="question-summary-7220670"> <div class="statscontainer"> <div class="stats"> <div class="vote"> <div class="votes"> <span class="vote-count-post"><strong>38</strong></span> <div class="viewcount">votes</div> </div> </div> <div class="status answered-accepted"> <strong>3</strong> answers </div> </div> </div> <div class="summary"> <h3><a href="../../questions/7220670/difference-between-description-and-content-encoded-tags-in-rss2" class="question-hyperlink">Difference between description and content:encoded tags in RSS2</a></h3> <div class="excerpt">What is the difference, if any, between the <description> tag and the <content:encoded> tag in RSS 2.0 format specifications? Is one more important than the other? Should I be using both in my feeds or one will suffice? </div> <div class="grid ai-start jc-space-between fw-wrap"> <div class="grid gs4 fw-wrap tags "> <a href="../../questions/tagged/xml" class="post-tag grid--cell" title="show questions tagged 'xml'" rel="tag">xml</a> <a href="../../questions/tagged/rss" class="post-tag grid--cell" title="show questions tagged 'rss'" rel="tag">rss</a> <a href="../../questions/tagged/feed" class="post-tag grid--cell" title="show questions tagged 'feed'" rel="tag">feed</a> <a href="../../questions/tagged/rss2" class="post-tag grid--cell" title="show questions tagged 'rss2'" rel="tag">rss2</a> </div> <div class="started mt0"> <div class="s-user-card s-user-card"> <time class="s-user-card--time" datetime="asked Aug 28 '11 at 11:31">asked Aug 28 '11 at 11:31</time> <a href="../../users/370073/2hamed" class="s-avatar s-avatar__32 s-user-card--avatar"> <img class="s-avatar--image" src="../../users/profiles/370073.webp" data-jdenticon-width="32" data-jdenticon-height="32" data-jdenticon-value="2hamed" /> </a> <div class="s-user-card--info"> <a href="../../users/370073/2hamed" class="s-user-card--link">2hamed</a> <ul class="s-user-card--awards"> <li class="s-user-card--rep" title="reputation score">8,719</li> <li class="s-award-bling s-award-bling__gold" title="13 gold badges">13</li> <li class="s-award-bling s-award-bling__silver" title="69 silver badges">69</li> <li class="s-award-bling s-award-bling__bronze" title="112 bronze badges">112</li> </ul> </div> </div> </div> </div> </div> </div> </div> <div class="s-pagination pager fr"> <a class="s-pagination--item" href="../../questions/tagged/rss_page=1" rel="prev" title="Go to page 1">Prev </a> <a class="s-pagination--item" href="../../questions/tagged/rss_page=1" rel="" title="Go to page 1">1</a> <div class="s-pagination--item is-selected">2</div> <a class="s-pagination--item" href="../../questions/tagged/rss_page=3" rel="" title="Go to page 3">3</a> <div class="s-pagination--item s-pagination--item__clear">…</div> <a class="s-pagination--item" href="../../questions/tagged/rss_page=99" rel="" title="Go to page 99">99</a> <a class="s-pagination--item" href="../../questions/tagged/rss_page=100" rel="" title="Go to page 100">100</a> <a class="s-pagination--item" href="../../questions/tagged/rss_page=3" rel="next" title="Go to page 3"> Next</a> </div> </div> </div> </div> </div> <script src="../../static/js/stack-icons.js"></script> <script src="../../static/js/fromnow.js"></script> </body> </html>