我正在开发一个工具(使用Python 3),该工具可以使我最近在Spotify上玩过的曲目。为此,我使用了official Spotify API(您可以在那里尝试)。在听音乐时,我会得到一个json,其中包含曲目,艺术家和更多信息。
不幸的是,此端点不支持收听播客。当我收听播客时,返回的json是
{
"timestamp": 1545990763374,
"context": {
"external_urls": {
"spotify": "https://open.spotify.com/show/2tuQXnufTLetdGd7c24EfW"
},
"href": "https://api.spotify.com/v1/shows/2tuQXnufTLetdGd7c24EfW",
"type": "show",
"uri": "spotify:show:2tuQXnufTLetdGd7c24EfW"
},
"progress_ms": 11357,
"item": null,
"currently_playing_type": "episode",
"is_playing": true
}
这对我来说还不够。我在Google上搜索了很多,但是找不到支持Podcast的Spotify API的任何端点。
有人知道解决方法吗?