From d77007f5a22e1b109f651eee2d778b47fd8c66d9 Mon Sep 17 00:00:00 2001 From: "Mr.Xia" <1424473282@qq.com> Date: Thu, 28 May 2026 11:41:04 +0800 Subject: [PATCH] =?UTF-8?q?debug(danding=5Fapi):=20=E6=B7=BB=E5=8A=A0post?= =?UTF-8?q?=5Fvcode=E8=AF=B7=E6=B1=82=E5=8F=82=E6=95=B0=E8=B0=83=E8=AF=95?= =?UTF-8?q?=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- danding_bot/plugins/danding_api/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/danding_bot/plugins/danding_api/utils.py b/danding_bot/plugins/danding_api/utils.py index a387f14..78e328f 100644 --- a/danding_bot/plugins/danding_api/utils.py +++ b/danding_bot/plugins/danding_api/utils.py @@ -38,6 +38,7 @@ async def post_vcode(user: str, admin_user: str = "1424473282") -> str: """生成QQ绑定验证码并发送邮件""" _url = plugin_config.DDApi_Host + router["生成QQ验证码"] data = {"user": admin_user, "token": plugin_config.Token, "qq": user} + logger.debug(f"post_vcode: url={_url}, token='{plugin_config.Token}', data={data}") try: async with aiohttp.ClientSession() as session: async with session.post(_url, json=data, timeout=aiohttp.ClientTimeout(total=10)) as resp: