我想嵌入 youtube 视频并显示 gallery/playlist

I want to embed youtube video and also show gallery/playlist

我想在画廊中展示我们 YouTube 频道中的所有视频。我正在使用 <iframe> 但它只显示一个视频。我怎样才能显示我们频道中的所有视频?

<div>
<iframe src="https://www.youtube.com/embed/Wyq6YeoM2ZA?ecver=2" width="640" height="360" frameborder="5" style="position:absolute;width:70%;height:60%;left:15%" allowfullscreen playlist></iframe>
</div>

此 HTML 将嵌入一个播放器来显示您的所有视频。将 YOURCHANNELNAME 替换为您的频道名称。

<iframe src="http://www.youtube.com/embed/?listType=user_uploads&list=YOURCHANNELNAME" width="480" height="400"></iframe>             

您可以在 Youtube 上观看 API。它在多种编程语言中都有很好的记录。这是 javascript 中的一个片段:

// Sample js code for playlists.list

// See full sample for buildApiRequest() code, which is not 
// specific to a particular youtube or youtube method.

buildApiRequest('GET',
                '/youtube/v3/playlists',
                {'channelId': 'UC_x5XG1OV2P6uZZ5FSM9Ttw',
                 'maxResults': '25',
                 'part': 'snippet,contentDetails'});

更多关于 https://developers.google.com/youtube/v3/docs/playlists/list