我想在画廊中显示我们YouTube频道的所有视频。我正在使用<iframe>
,但它仅显示一个视频。我如何显示我们频道的所有Viedo?
<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>
您可以在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.
此HTML将嵌入一个将显示您所有视频的播放器。用您的频道名称替换您的channelname。
<iframe src="http://www.youtube.com/embed/?listType=user_uploads&list=YOURCHANNELNAME" width="480" height="400"></iframe>