I've tried to retrive articles of my blog using something like this in the
Action method of my controller :
...
$gdataBlog = new Zend_Gdata_Blogger();
// One way to get a feed for a blog...
$feed = $gdataBlog->getBloggerFeed('blogname');
// Another way to get a feed for a blog...
$gdataBlog->setBlogName('blogname');
$feed = $gdataBlog->getBloggerFeed();
...
The previous code seems to work (no errors) and if I do a var_dump($feed) in
the View I could see that $feed is a complex table ....
But I want to know how to get each item of $feed ... where is the
documentation about the fields in the object return by getBLoggerFeed()
method ?
Thanks for your help