0

我想将视频设置为收藏,可以通过这种方法完成。但是最喜欢的播放列表ID是什么。

在此处输入图像描述

在此处输入图像描述

4

1 回答 1

0

您必须使用以下参数列出频道:(https://developers.google.com/youtube/v3/docs/channels/list

部分 = contentDetails
我的 = true

您将收到带有此类部分的频道信息

"contentDetails": {
    "relatedPlaylists": {
        "likes": "#playlistID#",
        "favorites": "#playlistID#",
        "uploads": "#playlistID#",
        "watchHistory": "#playlistID#",
        "watchLater": "#playlistID#"
    },
    "googlePlusUserId": "..."
}

您可以使用这些 id 对播放列表进行不同的操作

于 2013-10-30T11:49:55.760 回答