Maybe that's a somewhat uncommon question but here we go. Here's the code
$userName=("Google");
$yt = new Zend_Gdata_YouTube();
$query = $yt->newVideoQuery();
$query->setAuthor($userName);
$query->setMaxResults(3);
$query->setStartIndex(2);
printVideoFeed($yt->getVideoFeed($query));
And it works fine. But my client want to include his favorites list also.
It should be ok to use the
printVideoFeed($yt->getUserFavorites($userName));
But by doing that i cant control the pagination.
Any ideas?