Spotify Web API中的redirect_uri

时间:2018-07-11 06:48:07

标签: python spotify

对于使用Python的Spotify的Web API中的redirect-uri应该是什么以及它应该如何工作,我感到困惑。

我了解到支持使用http://localhost:8000,所以这就是我添加到仪表板中并在GET请求中使用的内容。

params = (
    ('client_id', MY_CLIENT_ID),
    ('response_type', 'code'),
    ('redirect_uri', "http://localhost:8000"),
    ('scope', 'user-read-private user-read-email'),
)

response = requests.get('https://accounts.spotify.com/authorize/', params=params)

GET请求有效,我得到响应对象<Response [200]>。但是,当我尝试获取对象的内容时,我得到了一个HTML文档,该文档呈现为:Error 404 Not Found

我在这里想念/做错了什么?

0 个答案:

没有答案