Hi!
How can i go through multiple feeds the fastest way with this script?
function OnLoad() {
// Create a feed instance that will grab Digg's feed.
var feed = new google.feeds.Feed("http://services.digg.com/2.0/
story.getTopNews?type=rss");
feed.includeHistoricalEntries(); // tell the API we want to have
old entries too
feed.setNumEntries(250); // we want a maximum of 250 entries, if
they exist
// Calling load sends the request off. It requires a callback
function.
feed.load(feedLoaded);
}
Can i call this onLoad method with all the feed URLs i need?
I need to read about 20-30 feeds and search for specified feeds (has a
string in title or in snippet) and show just this feed items. But for
this i have to get through all the feed URLs...
Thank you very much!
--
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].
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en.