我正在开发一个工具(在Python 3中),它可以获得我最近在Spotify上播放的曲目 . 为此,我使用official Spotify API(你可以在那里试试) . 在听音乐时,我会得到一个包含曲目,艺术家和更多信息的json .

不幸的是,此 endpoints 不支持收听播客 . 当我收听播客时,返回的json是

{
  "timestamp": 1544360365376,
  "context": null,
  "progress_ms": 3483284,
  "item": null,
  "currently_playing_type": "episode",
  "is_playing": true
}

这对我的目的来说还不够 . 我搜索了很多,但没有发现Spotify API支持播客的任何 endpoints .

有谁知道解决方法?