Yes, you could get multiple feeds using this approach, but not simultaneously, as your subject would suggest you want to do. The Feeds API simply doesn't do multiple feeds simultaneously. You could, however, pull multiple feeds in a nested fashion (i.e., get feed 1 and then, in the callback, get feed 2, etc.). Or you could figure out a way to get all the feeds and then, in the callbacks, check to see if you have all the responses and, if you do, proceed with merging them. There are a number of other alternatives.
jg On Wed, Dec 5, 2012 at 1:07 PM, prl <[email protected]> wrote: > Hello, > > I have a simple code that I use to get an RSS feed. I'm using this Google > Ajax API endpoint to do so (for example, for the URL > http://www.engadget.com/rss.xml): > > var url = > http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&callback=&context=&output=json&q=http%3A%2F%2Fwww.engadget.com%2Frss.xml > > > $.getJSON(url, function(data) { > > > > // code > > > > }, "jsonp"); > > > My question is: is it possible to load two feeds using this approach? (Is > it possible at all?) Should I do this by following what's here: > https://developers.google.com/feed/v1/devguide > > Thanks > > -- > You received this message because you are subscribed to the Google > Groups "Google AJAX APIs" group. > To post to this group, send email to > [email protected] > To unsubscribe from this group, send email to > [email protected] > To view this message on the web, visit > https://groups.google.com/d/msg/google-ajax-search-api/-/pXgRbK_oBVAJ > For more options, visit this group at > http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en > -- Jeremy R. Geerdes Generally Cool Guy Des Moines, IA If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church! http://www.debraheightswesleyan.org -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] To view this message on the web, visit http://groups.google.com/group/google-ajax-search-api?hl=en_US For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
