2

I'm developing a news feed app for ios, and I'm using Feedzilla news API. I have the news feed api correctly implemented, but Feedzilla only returns the news summary and other meta data, but not any images for the news article. So now I have to figure out a different way to get the news article images to display in my app. Does anyone know of either:

  1. A different newsfeed service that will give news article images
  2. A way to fetch news article images with feedzilla or
  3. A way to fetch image thumbnails from a web page

Thanks.

Starkey
  • 9,673
  • 6
  • 31
  • 51
Kwame
  • 1,115
  • 2
  • 21
  • 38
  • Try this link to Iphone RSS Feeder: [IPhone RSS Feeder](http://www.imthi.com/blog/programming/iphone-rss-reader-application-with-source-code.php) – chandhooguy Jul 18 '12 at 00:46
  • What did you do in the end? I'm planning on a similar idea – Adam Carter Dec 10 '12 at 02:15
  • I ended up sticking with Feedzilla. I've not been able to find a similar news feed service. The iPhone RSS Feeder suggested in the comment above uses BBC RSS feed. But I'm not able to filter that feed based on search criteria, and my app requires search. Let me know if you find one. – Kwame Dec 11 '12 at 16:39

1 Answers1

0

Are you getting url of the article/news as metadata after parsing the feed?

If yes.

Now using this URL you can read whole content of the news page and using any DOM parser you can read image url as well.

rai.skumar
  • 10,309
  • 6
  • 39
  • 55