我如何从我的频道获得YouTube最新视频缩略图?



是否可以从我的频道获得最新的YouTube视频缩略图?我只是想在我的网站上显示5个最新的YouTube视频缩略图,然后当我点击它时,在弹出框中播放视频。

在我的网站上显示5个最新的YouTube视频缩略图


$channelid=""; //write the channel id in quotes
$xml = simplexml_load_file(sprintf('https://www.youtube.com/feeds/videos.xml?channel_id=%s', $channelid));
$id = $xml->entry[0]->children('yt', true)->videoId[0]; //First Video ID
$id2 = $xml->entry[0]->children('yt', true)->videoId[1]; //Second Video ID-Duplicate this up to 5
$thumbimg="http://img.youtube.com/vi/$id/maxresdefault.jpg"; //First Video's thumnail
$thumbimg2="http://img.youtube.com/vi/$id2/maxresdefault.jpg"; //Second Video's thumnail-Duplicate this up to 5

最新更新