views:

46

answers:

2

Hi,

I want to create an iPhone project which search feeds, like in google reader if we search for some word in "Add a subsciption" tab it will display all feeds related to that so we can add feeds easily. Any Idea how it can be done.

Thanks in advance,

+1  A: 

Google Reader, presumably, relies on Google's own vast collection of known feeds and its search engine to locate relevant ones. My guess is you'd probably need to do the same (maybe use their FeedBurner API) unless you plan to create and maintain a service to collect, categorize, and offer up feeds to searches.

Joshua Nozzi
...of course you could just be asking how to interface with such a service in an iOS app, but that's a VERY vague question without at least naming a service you intend to use.
Joshua Nozzi
Is there is any other way to search feeds without using google account, like if we give "apple" in the search field it should display feeds related to "apple".
Chandan Shetty SP
+1  A: 

I have used http://code.google.com/apis/ajaxfeeds/documentation/reference.html#findFeeds And it worked for me.

Chandan Shetty SP