问题描述
我正在尝试通过 YouTube 数据 API 获取我的所有播放列表,包括我创建的公开播放列表和我喜欢的 YouTube 播放列表.我喜欢的 YouTube 播放列表位于单独的部分,称为已保存的播放列表".我正在使用
I'm trying to get all of my playlists through YouTube Data API including the public playlist that I have created and playlists that I liked from YouTube.The playlists that I have liked from YouTube are in separate section which call "Saved playlists".I'm using
https://www.googleapis.com/youtube/v3/playlists?part=snippet&channelId={ChannelID}&maxResults=50&key={YOUR_API_KEY}
但我只得到我创建的播放列表.如何获取已保存的播放列表"?
But I'm getting only the playlist that I have created.How can I get the "Saved playlists"?
推荐答案
遗憾的是,此端点仅检索用户创建的播放列表,尚未实现检索已保存的播放列表"的功能.
Unfortunately this endpoint only retrieves user created playlists, the ability to retrieve "Saved Playlists" it is not implemented yet.
可以在这里看到:https://code.google.com/p/gdata-issues/issues/detail?id=6836
这篇关于YouTube 数据 API - 如何获取“已保存的播放列表"通过 API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!