gpt4 book ai didi

python - 使用带有 Flask 的 Authlib 获取和存储刷新 token

转载 作者:行者123 更新时间:2023-12-04 02:35:11 26 4
gpt4 key购买 nike

我正在使用 authlib https://github.com/lepture/authlib获得用户对其数据的认证,因此日常离线调度程序可以代表用户下载一些数据。

我先注册客户端:

google = oauth.register(
'google',
client_id = '***',
client_secret = '***',
access_token_url = "https://www.googleapis.com/oauth2/v4/token",
access_token_params = None,
authorize_url = "https://accounts.google.com/o/oauth2/v2/auth",
authorize_params = None,
api_base_url = 'https://googleapis.com/oauth2/v1/',
client_kwargs={'scope': 'https://www.googleapis.com/auth/doubleclickbidmanager'}
)

在稍后阶段,我使用以下方法检索 token :

token = oauth.google.authorize_access_token()

当我打印 token 时,我看到 Google 没有返回我需要存储在数据库中以供离线使用的刷新 token :

{'access_token': '***', 'expires_in': 3599, 'scope': 'https://www.googleapis.com/auth/doubleclickbidmanager', 'token_type': 'Bearer', 'expires_at': 1591750317}

我能否更改使用 access_type = offline 注册客户端的方式,以便让 Google 知道我也需要刷新 token ?如何获取和存储刷新 token ?

最佳答案

这是将access_type 添加到授权端点的解决方案:

google = oauth.register(
'google',
# ...
authorize_params={'access_type': 'offline'},
)

使用此 authorize_params 将额外参数传递给 authorize_url。

关于python - 使用带有 Flask 的 Authlib 获取和存储刷新 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62293888/

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