hi,
Google Feed API is a cool stuff.
I am using feed like this
var feed = new google.feeds.Feed(strFeed)
eed.setNumEntries(100);
feed.includeHistoricalEntries();
feed.load(function (result) {
if (!result.error) {
from the feed entry
result.feed.entries[i] (A single thread)
I want find following information
Last user who has updated the Thread.
Last date/time in which thread was updated.
Can I get these two information which will be helpful for me to display in my Page? By Any Method/Properties in the API?
Thanks for your help
Regards
Manas