gpt4 book ai didi

oauth-2.0 - 通过Authorization Code从lepture/Authlib获取Refresh Token

转载 作者:行者123 更新时间:2023-12-04 02:58:45 25 4
gpt4 key购买 nike

我正在尝试开发一个使用 Authlib OAuth2 服务器获取刷新 token 的简单工具,但示例服务器 here不发出刷新 token 。当我打印 token 时,我得到以下信息:

{'access_token': '....', 'scope': 'profile', 'token_type': 'Bearer', 'expires_in': 864000, 'expires_at': 1532191887}

流程是授权码,引用here ;首先我处理同意部分:

client_id = '...'
client_secret = '.....'
scope = '...'
session = OAuth2Session(client_id, client_secret, scope=scope)
authorize_url = '.../oauth/authorize'
uri, state = session.authorization_url(authorize_url)

然后我尝试获取 token :

urlset = '.../?code=...&state=...'
access_token_url = '.../oauth/token'
token = session.fetch_access_token(access_token_url,authorization_response=urlset)

最佳答案

关于oauth-2.0 - 通过Authorization Code从lepture/Authlib获取Refresh Token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51305430/

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