我正在使用spotipy
实现一个简单的应用程序。
我想跳过下一首,但是在输出中出现此错误:
spotipy.client.SpotifyException:HTTP状态:403,代码:-1-https://api.spotify.com/v1/me/player/next: 当前用户不可用
我的代码:
import os
import spotipy
import spotipy.util as util
from json.decoder import JSONDecodeError
# Set data client, redirect URL and username
username = 'xxxx'
client_id = 'xxxxxxxx'
client_secret = 'xxxxxxxx'
redirect_uri = 'https://www.xxxxx.it/'
scope = 'user-modify-playback-state'
# Erase cache and prompt for user permission
try:
token = util.prompt_for_user_token(username, scope, client_id, client_secret, redirect_uri)
except (AttributeError, JSONDecodeError):
os.remove(f".cache-{username}")
token = util.prompt_for_user_token(username, scope, client_id, client_secret, redirect_uri)
# Configure Spotify
sp = spotipy.Spotify(auth=token)
current = sp.next_track()