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: