I am building an online Rss reader. I want to be able to display images along with the article title and description.
I am using google feeds API to read the rss feed from CNN (http://rss.cnn.com/rss/edition.rss). In the feed I get, I cannot find a link to the appropriate image anywhere.
Sample JSON result:
XML NODE:
I know that other rss readers, for examaple Feedly, can display relevant images for each article: http://www.feedly.com/home#subscription/feed/http://rss.cnn.com/rss/edition.rss
I tried scraping the actual CNN page, hoping to pull the image straight from there. However, the html page that i read is missing the image/video that I am interested in.
I have been trying to figure this out for a while.. I thought the image link should be included in the 'content' field of a rss entry?
Any help will be greatly appreciated. Thank you!