Developer's Guide: PHP - YouTube APIs and Tools - Google Code
Popularity Report
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
URL Tag Cloud
Bookmark History
Saved by 3 people (-2 private), first by anonymouse user on 2008-01-05
- Xtinaz on 2008-08-28 - Tags MapProject
- Komozi on 2008-03-30 - Tags imported , Menudesmarque-pages , DYNAMICCONTENT , DocumentationsPhp
- Vier0n on 2008-01-05 - Tags no_tag
Public Sticky notes
Retrieving a user's favorite videos
Highlighted by vier0n
Each YouTube user has an associated video feed corresponding to their
favorite videos, at http://gdata.youtube.com/feeds/api/users/userID/favorites.
The following code demonstrates how to fetch and display a user's favorites feed:
function getAndPrintUserFavorites($user)
{
$yt = new Zend_Gdata_YouTube();
printVideoFeed($yt->getUserFavorites($user));
}
Highlighted by vier0n


Public Comment