fix totp call sign (#3907)

This commit is contained in:
LawyZheng
2025-11-05 14:02:45 +08:00
committed by GitHub
parent 5929c5d984
commit 3c3b5c2db9
3 changed files with 5 additions and 126 deletions

View File

@@ -130,6 +130,7 @@ async def aiohttp_get_text(
async def aiohttp_post(
url: str,
data: dict[str, Any] | None = None,
str_data: str | None = None,
headers: dict[str, str] | None = None,
cookies: dict[str, str] | None = None,
retry: int = 0,
@@ -145,6 +146,7 @@ async def aiohttp_post(
async with session.post(
url,
# TODO: make sure to test this out
data=str_data,
json=data,
headers=headers,
cookies=cookies,