我很难尝试在spotify
上验证我的localhost
应用。我的redirect_uri
设置为localhost:8888/callback
(我也在http://
尝试过)在我的开发者帐户中,但是当终端提示我输入我正在进行的网址时,我收到此错误页面重定向到。
我正在使用python -m SimpleHTTPServer 8888
运行我的服务器,并在终端python script.py username
处输入。
这是我的python脚本:
scope = 'user-library-read'
if len(sys.argv) > 1:
username = sys.argv[1]
else:
print "Usage: %s username" % (sys.argv[0],)
sys.exit()
token = util.prompt_for_user_token(username, scope, client_id='myId', client_secret='mySecret', redirect_uri='localhost:8888/callback')
if token:
sp = spotipy.Spotify(auth=token)
results = sp.current_user_saved_tracks()
for item in results['items']:
track = item['track']
print track['name'] + ' - ' + track['artists'][0]['name']
else:
print "Can't get token for", username
这是日志:
token_info = sp_oauth.get_access_token(code)
File "/Library/Python/2.7/site-packages/spotipy/oauth2.py", line 210, in get_access_token
raise SpotifyOauthError(response.reason)
spotipy.oauth2.SpotifyOauthError: Bad Request
什么可能是错的?请帮忙
答案 0 :(得分:0)
你没有端口号尝试过吗? 所以更换
localhost:8888/callback
用这个:
localhost:/callback