这是我的代码
UserScope = 'user-library-read'
util.prompt_for_user_token(username='vulrev1',scope=UserScope,client_id="533adb3f925b488za9d3772640ec6403",client_secret='66054b185c7541fcabce67afe522449b',redirect_uri="http://127.0.0.1/callback")
lz_uri = 'spotify:artist:36QJpDe2go2KgaRleHCDTp'
spotify = spotipy.Spotify()
results = spotify.artist_top_tracks(lz_uri)
for track in results['tracks'][:10]:
print ('track : ' + track['name'])
我收到了这个
spotipy.oauth2.SpotifyOauthError: Bad Request
我不太确定这里发生了什么,我需要对主机文件做些什么吗?因为http://127.0.0.1拒绝连接
答案 0 :(得分:0)
void
您必须将您的令牌作为身份验证发送。此外,我认为您必须将您的用户ID更改为您可以在个人资料链接中找到的具体数字。