Quantcast
Channel: Extract Content from Atom Feeds - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by Eric Koleda for Extract Content from Atom Feeds

You first need to get the root element of the document (rss) using getElement() and then crawl down the DOM from there. var title = parsedResponse.getElement() .getElement('channel')...

View Article



Answer by Srik for Extract Content from Atom Feeds

Try adding this to your piece of code var text = parsedResponse.getElement().getElement('rss').getElement('channel') .getElement('item').getElement('title').getText();

View Article

Extract Content from Atom Feeds

Am trying to extract "/rss/channel/item/title" and "/rss/channel/item/description" from the Wordsmith XML Feed. However I never figured out to extract them from the feed. Any help would be appreciated....

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images