Spotify API,尝试添加到播放列表时出现错误403

时间:2020-11-08 16:52:02

标签: python python-3.x spotify spotipy

首次使用spotify API。这仅用于在我的PC上运行,因此我认为我不需要重定向URI。 我有一个连接,因为我可以检索曲目URI,但是无法将它们添加到我自己的播放列表中。我担心我在授权(范围)时做错了事。

身份验证代码段:

def main():
    instance = InstanceBuilder().setSubregion_id(Subregions.PL001).build
 

整个代码:

scope = 'playlist-modify-private playlist-modify-public'
token_url = "https://accounts.spotify.com/api/token"
token_data = {
    "scope": "playlist-modify-private playlist-modify-public",
    "grant_type": "client_credentials"
}

token_headers = self.get_token_headers()        

r = requests.post(token_url, data=token_data, headers=token_headers)

0 个答案:

没有答案