Spotify:通过API添加曲目后,播放列表不会刷新

时间:2018-03-07 13:27:29

标签: python spotify spotipy

我正在使用Spotipy编写脚本,将曲目添加到Spotify播放列表中。 我正在使用Github的示例代码。

import pprint
import sys

import spotipy
import spotipy.util as util

if len(sys.argv) > 3:
    username = sys.argv[1]
    playlist_id = sys.argv[2]
    track_ids = sys.argv[3:]
else:
    print("Usage: %s username playlist_id track_id ..." % (sys.argv[0],))
    sys.exit()

scope = 'playlist-modify-public'
token = util.prompt_for_user_token(username, scope)

if token:
    sp = spotipy.Spotify(auth=token)
    sp.trace = False
    results = sp.user_playlist_add_tracks(username, playlist_id, track_ids)
    print(results)
else:
    print("Can't get token for", username)

它工作正常,实际上添加了轨道,但我需要刷新浏览器才能播放它。是否有可能在播放时动态更新播放列表,以便不需要中断音乐?

0 个答案:

没有答案