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
1196
votes
28 answers

How to apply CSS to iframe?

I have a simple page that has some iframe sections (to display RSS links). How can I apply the same CSS format from the main page to the page displayed in the iframe?
John
194
votes
20 answers

Parse RSS with jQuery

I want to use jQuery to parse RSS feeds. Can this be done with the base jQuery library out of the box or will I need to use a plugin?
Andy Brudtkuhl
  • 3,652
  • 3
  • 27
  • 31
158
votes
7 answers

What is the correct MIME type to use for an RSS feed?

Is one MIME type preferable to ensure compatibility with RSS readers and other scrapers? The options seem to be: text/xml text/rss+xml Interestingly Stackoverflow is using text/html.
Steve Claridge
  • 10,650
  • 8
  • 33
  • 35
140
votes
10 answers

Best way to parse RSS/Atom feeds with PHP

I'm currently using Magpie RSS but it sometimes falls over when the RSS or Atom feed isn't well formed. Are there any other options for parsing RSS and Atom feeds with PHP?
carson
  • 5,751
  • 3
  • 24
  • 25
133
votes
7 answers

How Do I Fetch All Old Items on an RSS Feed?

I've been experimenting with writing my own RSS reader. I can handle the "parse XML" bit. The thing I'm getting stuck on is "How do I fetch older posts?" Most RSS feeds only list the 10-25 most recent items in their XML file. How do I get ALL the…
user14834
  • 1,461
  • 2
  • 11
  • 7
124
votes
9 answers

How to parse an RSS feed using JavaScript?

I need to parse an RSS feed (XML version 2.0) and display the parsed details in an HTML page.
Thiru
  • 2,374
  • 7
  • 21
  • 29
122
votes
2 answers

Setting up a Github Commit RSS feed

I am trying to have my github commits as an RSS feed but so far I have not managed to figure it out. I know that a private feed is available with the following syntax: https://github.com/username.atom?token=token But this the user's activity feed.…
jalagrange
  • 2,291
  • 2
  • 19
  • 24
115
votes
5 answers

RSS Feeds in ASP.NET MVC

How would you reccommend handling RSS Feeds in ASP.NET MVC? Using a third party library? Using the RSS stuff in the BCL? Just making an RSS view that renders the XML? Or something completely different?
Lance Fisher
  • 25,684
  • 22
  • 96
  • 122
113
votes
5 answers

Best Way to read rss feed in .net Using C#

What is the best way to read RSS feeds? I am using XmlTextReader to achieve this. Is there any other best way to do it? XmlTextReader reader = new XmlTextReader(strURL); DataSet ds = new DataSet(); ds.ReadXml(reader); After reading the RSS feed…
Tronics
  • 1,438
  • 4
  • 22
  • 33
72
votes
4 answers

UEFA/FIFA scores API

Does anybody know if UEFA or FIFA provide a scores api for football matches, official team players list, transfers, etc? I found footytube api but not sure ofits stability and completeness..
Dmitry Teplyakov
  • 2,898
  • 5
  • 26
  • 46
71
votes
3 answers

Are there any constantly updating RSS feed services to use for testing, or just very active RSS feeds?

I'm trying to test a service that consumes RSS feeds and turns them into push notifications, and it would be nice if there was a very regularly updated publicly available RSS feed I could point it at. I know I can just use a news feed like CNN, but…
mgnb
  • 2,803
  • 2
  • 16
  • 15
67
votes
16 answers

How to get a Youtube channel RSS feed after 2015 April 20 (without v3 API)?

Now that API v2 is gone, what would be a way to get a simple RSS feed of a channel, without v3 API? I'm open to Yahoo Pipes or any workaround that is simpler than creating an application for v3 API if the target is a feed reader. I only need an RSS…
57
votes
4 answers

preg_match(); - Unknown modifier '+'

Alright, so I'm currently working on parsing an RSS feed. I've gotten the data I need no problem, and all I have left is parsing the game title. Here is the code I currently have (ignore the sloppiness, it is just a proof of concept):
David Bradbury
  • 1,997
  • 3
  • 19
  • 23
55
votes
5 answers

How to find RSS feed of a particular website?

How to find RSS feed of a particular website? Whether there is any particular way to find it?
Shan
  • 2,822
  • 9
  • 40
  • 61
52
votes
2 answers

Generating RSS feed in Rails 3

I'm looking for a best practice/standard pattern for generating feeds in Rails 3. Is http://railscasts.com/episodes/87-generating-rss-feeds still valid?
Jeppe Liisberg
  • 3,734
  • 3
  • 25
  • 24
1
2 3
99 100