2014-01-21 62 views

回答

8

channelId參數未指定要返回視頻的頻道。把它看作是一個「過濾器」,只顯示特定頻道的播放列表。

相反,這樣做:

  1. 讓您的通道標識與part=contentDetails一個channel.list() API調用。將該值保存在items[0][contentDetails][relatedPlaylists][uploads]之下。例如:

    GET https://www.googleapis.com/youtube/v3/channels?part=contentDetails&id=UC0vrmjhkmbCxYUGl8KNFxMA&key= {YOUR_API_KEY}

  2. 使與在ID字段中檢索到的值的playlistItems.list() API調用。在你的具體情況下,這是UU0vrmjhkmbCxYUGl8KNFxMA。 API調用是:

    GET https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId=UU0vrmjhkmbCxYUGl8KNFxMA&key= {} YOUR_API_KEY

+0

非常感謝你:) –

相關問題