如何获取当前用户在 spotify 中关注的播放列表?
How to get the playlist that the current user is following in spotify?
我想在 spotify api 中获取用户正在关注 的播放列表,但似乎找不到方法。你能告诉我怎么做吗?谢谢
目前使用 Spotify Web API,您只能请求 全部 播放列表 User Following 和 创建的 Playlists ]当前用户 Get a List of Current User's Playlists.
但是您可以看到 Playlist 的 Owner 是什么,因此您可以使用 Get Current User's Profile 获取当前用户。然后使用 Get a List of Current User's Playlists 获取所有 Playlists 并查看哪些有不同的 Owner 而不是 当前用户 ,这是目前唯一支持的确定用户关注的播放列表的方法。
我想在 spotify api 中获取用户正在关注 的播放列表,但似乎找不到方法。你能告诉我怎么做吗?谢谢
目前使用 Spotify Web API,您只能请求 全部 播放列表 User Following 和 创建的 Playlists ]当前用户 Get a List of Current User's Playlists.
但是您可以看到 Playlist 的 Owner 是什么,因此您可以使用 Get Current User's Profile 获取当前用户。然后使用 Get a List of Current User's Playlists 获取所有 Playlists 并查看哪些有不同的 Owner 而不是 当前用户 ,这是目前唯一支持的确定用户关注的播放列表的方法。