Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经有一个 access_token,但它是一个 short_lived_token。对于我的应用程序,我需要一个 long_lived_token,并且我知道如何在 java 中获取它,但我使用的是 Python。
有人知道如何在 python 中获得 long_lived access_token 吗?或者如何在 python 中将我的 short_lived 更新为 long_lived?
根据内部文档,Python SDKextend_access_token中定义了一个方法
extend_access_token
延长有效 OAuth 访问令牌的到期时间。
这将是您正在寻找的东西。