异步使用authlib的httpx客户端的例子

Examples of using authlib's httpx client asynchronously

有几个示例 here 使用 httpx 客户端而不是基于 requests 的会话与流行的 oauth 库 authlib

然而,在这些示例中,它们并未显示如何正确打开和关闭异步 httpx 会话。参见 https://www.python-httpx.org/async/

当我尝试按照建议使用它时,我收到有关会话未关闭的警告:

UserWarning: Unclosed <authlib.integrations.httpx_client.oauth2_client.AsyncOAuth2Client object at 0x000001B6444BFEB0>. See https://www.python-httpx.org/async/#opening-and-closing-clients for details

如果我调用两次,我会得到

RuntimeError: Event loop is closed

这对我来说完全有意义,因为 authlibs 文档中的示例没有为异步会话使用上下文管理器

authlibAsyncOAuth2Client 继承自 httpxAsyncClient,因此您应该能够使用 https://www.python-httpx.org/async/#opening-and-closing-clients 中给出的相同方法。所以要么是这样的:

async with authlib.integrations.httpx_client.oauth2_client.AsyncOAuth2Client() as client:
    ...

或:

client = authlib.integrations.httpx_client.oauth2_client.AsyncOAuth2Client()
...
await client.aclose()

应该允许您根据需要打开和关闭会话。