通过Spotipy使用多个范围

时间:2018-11-09 00:40:37

标签: python spotify spotipy

我正在尝试使用Spotipy库提取用户曲目并创建播放列表。每个函数都单独工作(getTracks,makePlaylist);但是,它们需要不同的范围。

def generate_token(scope):
token = util.prompt_for_user_token(
    username='al321rltkr20p7oftb0i801lk',
    scope=('user-library-read','playlist-modify-private'),
    client_id='0e7ea227ef7d407b8bf47a4c545adb3c',
    client_secret='267e96c4713f46d4885a4ea6a099ead4',
    redirect_uri='http://www.google.com')
return token

这将返回错误“ AttributeError:'tuple'对象没有属性'split'”,当我尝试将两个范围作为列表发送时,我也遇到了错误。有想法该怎么解决这个吗?

1 个答案:

答案 0 :(得分:2)

scope应该是单个字符串,而不是元组。

scope='user-library-read playlist-modify-private'