0

我正在使用 Spotipy 通过搜索歌曲标题来检索曲目。我不知道如何获取查询的 status_codes,以便我可以使我的应用程序更加安全。有任何想法吗?

这是一个代码片段:

    sp = spotipy.Spotify()

    results = sp.search(q=title, type='track')

    #Want to check if status code of the sp.search command is 200 or something else. 
    #How?

    trackListing = results['tracks']['items']
4

1 回答 1

0

它看起来不像内部的 spotipy api 返回状态码。但是,它会为 HTTP 错误抛出SpotifyException。将您的代码放在 try/except 块中并捕获SpotifyException以达到相同的结果。

于 2015-02-26T19:41:19.047 回答