From 7312aedaafc7ed14b68e39c9a618c9a8b61626fa Mon Sep 17 00:00:00 2001 From: aaron <> Date: Sat, 8 Mar 2025 13:58:34 +0800 Subject: [PATCH] update --- app/core/mpclient.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/core/mpclient.py b/app/core/mpclient.py index 0340d10..945230b 100644 --- a/app/core/mpclient.py +++ b/app/core/mpclient.py @@ -70,11 +70,12 @@ class MPClient: async with aiohttp.ClientSession() as session: async with session.post(api_url, json=message) as response: result = await response.json() + + print(f"发送模板消息结果: {result}") if result.get("errcode") == 0: return True - print(f"发送模板消息失败: {result}") return False except Exception as e: