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

问题描述 投票:0回答:1

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

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

html youtube youtube-api
1个回答
0
投票

    $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

© www.soinside.com 2019 - 2024. All rights reserved.