gpt4 book ai didi

python - Spotipy 使用授权代码流刷新 token

转载 作者:太空狗 更新时间:2023-10-30 02:53:31 25 4
gpt4 key购买 nike

我有一个使用 spotipy 的长时间运行的脚本。一小时后(根据 Spotify API),我的访问 token 过期。我成功地捕获了这个,但我不知道从那里去哪里才能真正刷新 token 。我使用的是授权代码流,而不是客户端凭据。这是我授权的方式:

token = util.prompt_for_user_token(username,scope=scopes,client_id=client_id,client_secret=client_secret, redirect_uri=redirect_uri)

sp = spotipy.Spotify(auth=token)

我见过的所有刷新示例都涉及 oauth2 对象(例如 oauth.refresh_access_token()),并且文档只列出了作为刷新方法的功能你的 token 。据我了解,使用授权代码流,您不需要 oauth 对象(因为您使用 prompt_for_user_token() 进行身份验证)。如果是这样,我该如何刷新我的 token ?

最佳答案

my github issue 上未收到任何回复后,在我看来,不使用 OAuth2 就无法刷新 token 。这违背了 the Spotipy docs 中的规定。 :

The Authorization Code flow: This method is suitable for long-running applications which the user logs into once. It provides an access token that can be refreshed.

他们的授权代码流程示例使用 prompt_for_user_token()。

我切换到 OAuth 方法,这很痛苦,因为每次我运行程序时都需要重新授权(实际上只是我测试时的一个问题,但仍然是一个问题)。由于 Spotipy 文档中没有 OAuth2 示例,我将在此处粘贴我的示例。

sp_oauth = oauth2.SpotifyOAuth(client_id=client_id,client_secret=client_secret,redirect_uri=redirect_uri,scope=scopes)
token_info = sp_oauth.get_cached_token()
if not token_info:
auth_url = sp_oauth.get_authorize_url(show_dialog=True)
print(auth_url)
response = input('Paste the above link into your browser, then paste the redirect url here: ')

code = sp_oauth.parse_response_code(response)
token_info = sp_oauth.get_access_token(code)

token = token_info['access_token']

sp = spotipy.Spotify(auth=token)

为了刷新我的 token (每小时需要一次),我使用了这个函数。何时何地调用它取决于您的程序。

def refresh():
global token_info, sp

if sp_oauth.is_token_expired(token_info):
token_info = sp_oauth.refresh_access_token(token_info['refresh_token'])
token = token_info['access_token']
sp = spotipy.Spotify(auth=token)

关于python - Spotipy 使用授权代码流刷新 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49239516/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com