Python Spotify刷新令牌

时间:2017-10-13 13:22:19

标签: python spotify

我正在尝试获取刷新令牌,但我一直收到400错误。以下是我的代码。我究竟做错了什么?任何帮助,将不胜感激。感谢。

clientid="xxx"
refreshkey="xxx"
secretkey="xxx"
spotifyurl="https://accounts.spotify.com/api/token"
spotifydata = {'grant_type': 'refresh_token', 'refresh_token':refreshkey}
response = requests.post(spotifyurl, data=spotifydata, auth=(clientid, secretkey))

1 个答案:

答案 0 :(得分:1)

我的头撞到墙上疼得厉害,但我终于明白了。我使用Spotify提供的node.js示例来获取我的初始令牌和刷新令牌。原来他们的html页面有一个错误,增加了额外的“>”在刷新键的末尾。