2017-09-08 126 views
-1

我想在圖庫中顯示我們的youtube頻道中的所有視頻。我正在使用,但它只顯示一個視頻。我怎樣才能顯示我們頻道的所有視頻?我想嵌入youtube視頻並顯示圖庫/播放列表

<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> 
+1

是否有使用iframe HTML標籤的具體原因?您可能想了解爲什麼它被認爲是不好的:https://stackoverflow.com/questions/23178505/good-reasons-why-not-to-use-iframes-in-page-content#23178537 –

+0

歡迎來到StackOverflow。請花點時間閱讀指南。 – catbadger

回答

0

這個HTML將嵌入一個播放器,將顯示您的所有視頻。將YOURCHANNELNAME替換爲您的頻道名稱。

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

不工作??? 你會告訴我** YOURCHANNELNAME **只是簡單的名字或東西? –

+0

有關更多詳細信息,請參閱以下鏈接。 https://support.google.com/youtube/answer/3250431?hl=zh-CN –

1

您可以觀看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

+0

我閱讀文檔時很複雜,因爲我已經提到了我正在學習,所以我想現在對我來說有點困難。 有沒有其他辦法可以完成? –

相關問題