Best way to parse RSS/Atom feeds with PHP [closed]
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?
View ArticleRSS/Atom parsing library for .Net
I'm trying to find a library that can read a given RSS/Atom feed, and that can guess its format and abstract it as a list of items. The idea is to build a simple RSS reader that could take any feed. I...
View ArticleMost Important Elements inside a RSS/Atom feed
We're building an "on-demand" feed parsing service (http://superfeedr.com) that developers can plug directly into their own applications. Instead of building your own feed parsing module, and spending...
View ArticleRails library to process an RSS/ATOM feed?
What's a good solution to parse an RSS/ATOM feed and present the content in a Rails view?
View ArticleTrouble Parsing Atom feed with jQuery
I have an Atom feed like this... <?xml version="1.0"?> <feed xml:base="http://earthquake.usgs.gov/" xmlns="http://www.w3.org/2005/Atom" xmlns:georss="http://www.georss.org/georss">...
View Articleaccess namespace element/attribute in xml/atom document with simplexml
I may have a simple question, I need to know how to get to nested namespace attributes/elements like below <gf:marketValue> <gd:money amount='150990.0' currencyCode='USD'/>...
View ArticleSax parsing and encoding
I have a contact that is experiencing trouble with SAX when parsing RSS and Atom files. According to him, it's as if text coming from the Item elements is truncated at an apostrophe or sometimes an...
View ArticleWhat RSS parser should I use in PHP?
I am searching an RSS parser written in PHP. The problem is not that I cannot find one. The problem is that there are too many and it's hard to decide which one to use (especially when I have no...
View Articleparsing XML with PHP need to display the embedded HTML as markup
I'm writing a simple atom XML parser with PHP I have trouble displaying the proper content inside the <content> tag if there is additional HTML tag within. Ex. If I want to parse the following...
View ArticleCan I use Ruby in-built RSS module to read atom feed?
I am in an environment where I don't have access to install any gems. I only have standard ruby (version:1.8.7) installation. I am trying something like this: require 'rss/1.0' require 'rss/2.0'...
View ArticleROME API to parse RSS/Atom
I'm trying to parse RSS/Atom feeds with the ROME library. I am new to Java, so I am not in tune with many of its intricacies. Does ROME automatically use its modules to handle different feeds as it...
View Articlehow to format atom date time
I'm getting dates from feed in this format: 2009-11-04T19:55:41Z I'm trying to format it using the date() function in PHP, but I get an error saying: date() expects parameter 2 to be long, object...
View ArticleParse ATOM in Ruby with custom namespaces
I'm trying to read this ATOM Feed (http://ffffound.com/feed), but I'm unable to get to any of the values which are defined as part of the namespace e.g. media:content and media:thumbnail. Do I need to...
View ArticleATOM data parse with GData on iPhone
I am trying to parse XML from an RSS feed. It contains ATOM data and I would like to parse it using GData library. The XML code looks like this: <item> <title>Madoka Kaname</title>...
View ArticleProblems parsing Facebook atom feed using PHP
I have problems parsing a atom facebook feed. Using: PHP's DOMDocument. Errors: Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 12 Warning: DOMDocument::loadXML():...
View ArticleRemoving tags from xml file for BlackBerry
I am developing a BlackBerry app which needs to read from an xml file. I am able to read it but I would like to remove the tags such as <?xml version='1.0' encoding='UTF-8'?>, <feed>,...
View ArticleAtom Issue with different Twitter accounts
I'm using an atom feed parsed via PHP to display the most recent post. The URL that feeds into this is: http://search.twitter.com/search.atom?q=from:username&rpp=1. When using...
View ArticleSimple XML Element fail to parse a string from an .atom file
I've this piece of code taken by a .atom document wrapped with file_get_contents: <entry> <link type="text/html" rel="alternate" href="..."/> </entry> My goal is to extract the first...
View ArticleDifficulty Reading with Atom Reader
I tried making a parser for both RSS and Atom where RSS feed shows the headlines while Atom shows with images and description plus link. It seems my parser works only for RSS. Can you tell me why?...
View ArticleHow to catch XML Dom with php regex
I got some XML Atom files on local. On all of those files, there are some <author>...</author> balise that I want to catch in a PHP string variable. So I did that : function...
View ArticleAndroid fast rss/atom parsing
I'm looking for a fast way to parse an RSS and Atom feed (the source changes periodically). I tried different approach: Writing my own parser: I made a very fast one using SAX Problem: Most of the...
View ArticleHow to navigate / process atom entry links in Java?
I need to parse an atom document, where entry links point to other related entries. For example, an entry contains information about an electric meter, and a link points to another entry which...
View ArticleJava: Parse OData Atom Feed
How can I parse a odata atom feed? Notice: The xml data are already on my system. So I need a libary that takes a string or local file path. Example: <?xml version="1.0"...
View ArticleNeed Only New and Updated Entries from ATOM, RSS
Is there an ATOM Client or framework that enables capture of a feed entry EXACTLY once? If not, what is the best architecture? We would like to parse an ATOM feed, persisting all syndication feed...
View ArticleHow to use SAXParse to parse atom feed with java
I use the SAXParser to parse RSS feed that was prepared for iTunes podcast. It doesn't want work with these tags. If I remove all marked tags it will work. The mainly task to get info from item tags...
View Articlejavascript getElementsByTagName exclude certain tags
In my project I'm trying to parse rss & atom feeds. I target each feed's link with this: var feedLink = source.getElementsByTagName('link')[0]; Some feeds start directly with...
View ArticleCan't fetch all text when parse from google alerts
I already made an Android RSS Feed App from Google Alerts Source. After I compiled and running only showing about half article or can't fetch all text from one source but not crash. From...
View ArticleError during parsing of Atom response
I try to parse a HttpWebRequest from Yandex-Fotki (Image Hoster). I get a response in Atom-Format, but in SyndicationFeed I get an error: The element with name 'service' and namespace...
View ArticleFind a value by substring in a nested dictionary
Just to give my problem a context: I am writing a Django webapp that includes several applications. One of them is used to display articles from RSS feeds. For now, I was only displaying the link,...
View ArticleUnable to parse atom feed
I am implementing Youtube push notification and implemented webhook. Youtube gives updates in the form of atom feed. My problem is i can't parse that feed. This is the XML: <?xml version="1.0"...
View Article