Spotipy Current user not working AttributeError: 'str' object has no attribute 'get_access_token'

Spotipy Current user not working AttributeError: 'str' object has no attribute 'get_access_token'

我正在尝试使用 python 为 spotify 创建一个音乐机器人,但没有任何效果。这是我的代码:

    scope = 'user-read-private'
myClientId = "[ur id]"
mySecret = "[ur secret]"
myRedirect="http://google.de/"
myUsername="[ur name]"

token = spotipy.prompt_for_user_token(myUsername,scope, myClientId, mySecret, myRedirect)

sp = spotipy.Spotify(auth_manager=token)
sp.current_user()

这是控制台中的完整错误:

  File "C:\Users\a\Downloads\spotify2.py", line 18, in <module>
    sp.current_user()
  File "C:\Users\a\AppData\Local\Programs\Python\Python39\lib\site-packages\spotipy\client.py", line 1173, in current_user
    return self.me()
  File "C:\Users\a\AppData\Local\Programs\Python\Python39\lib\site-packages\spotipy\client.py", line 1167, in me
    return self._get("me/")
  File "C:\Users\a\AppData\Local\Programs\Python\Python39\lib\site-packages\spotipy\client.py", line 297, in _get
    return self._internal_call("GET", url, payload, kwargs)
  File "C:\Users\a\AppData\Local\Programs\Python\Python39\lib\site-packages\spotipy\client.py", line 221, in _internal_call
    headers = self._auth_headers()
  File "C:\Users\a\AppData\Local\Programs\Python\Python39\lib\site-packages\spotipy\client.py", line 212, in _auth_headers
    token = self.auth_manager.get_access_token(as_dict=False)
AttributeError: 'str' object has no attribute 'get_access_token'

根据 documentation,要使用令牌初始化 Spotipy 对象,您需要这样初始化它:

sp = spotipy.Spotify(auth=token)

sp = spotipy.Spotify(token)

而不是将其作为 auth_manager 参数传递。