Spotipy 401 / 405 未提供令牌

问题描述 投票:0回答:1

我一直在开发一个 Spotify / spotipy 应用程序,它将当前歌曲添加到某个播放列表。 我获取当前歌曲和显示播放列表的功能都很好。我的将歌曲添加到播放列表的功能不是。

我的 IDE 中出现以下错误:

http 状态:405,代码:-1 - https://api.spotify.com/v1/users/myUserID/playlists/myPlayListID/tracks
错误

当我复制粘贴链接到浏览器时,出现以下错误:

{
  "error": {
    "status": 401,
    "message": "No token provided"
  }
}

据我所知,我正在提供令牌。

这是我制作 Spotify 对象的函数

def __createSpotifyObject(self):
    """Will create a Spotify object and return it"""

    # Defining the scope(s) of the application
    scope = "playlist-modify-public playlist-modify-private user-read-currently-playing"

    # Getting the token
    token = util.prompt_for_user_token(username=USER_NAME, scope=scope, client_id=CLIENT_ID, client_secret=CLIENT_SECRET, redirect_uri="https://localhost/")

    # Returning our Spotify object
    return spotipy.Spotify(auth=token)

这是尝试将歌曲添加到我的播放列表的功能(这是发生错误的地方)

我已经尝试捕获异常(确实如此),然后尝试创建一个新的 Spotify 对象,以便它刷新令牌或类似的东西。它只是给了我同样的错误。

def addCurrentSongToSelectedPlaylist(self):
    """Will add the currently playing song to the selected playlist"""

    # Checking if a playlist has been selected
    if (len(self.__selectedPlaylist ) < 1):

        print("No playlist selected")
        return

    # Getting the current song
    currentSong = self.getCurrentSong()

    # Adding the current song id to the selected playlist
    try:
        self.__spotify.user_playlist_add_tracks(USER, self.__selectedPlaylist, [currentSong["id"]])

    except spotipy.client.SpotifyException:
        # Re authenticating
        self.__spotify = self.__createSpotifyObject()
        self.__spotify.user_playlist_add_tracks(USER, self.__selectedPlaylist, [currentSong["id"]])

在这一点上,我唯一能想到的是显示播放列表/显示当前播放的歌曲操作需要较少的权限,这就是它们工作的原因,而将歌曲添加到播放列表不会。

python http token spotify spotipy
1个回答
0
投票

我发现我实现了用户错误。而不是username?si=someNumbers,我只需要输入用户名。

  • 将错误消息的地址复制并粘贴到浏览器中是没有用的,因为它是一个 api 调用,它总是会返回 401:没有提供令牌,因为试图在没有令牌的情况下访问它。
  • 刚刚偶然发现了每个错误代码含义的精美列表。 https://developer.spotify.com/documentation/web-api/ 这不仅适用于 web api,也适用于 Spotipy 库。根据此页面上的列表检查 IDE 或编辑器中的错误代码。
© www.soinside.com 2019 - 2024. All rights reserved.