ForcePilot/backend/package/yuxi/channels/adapters/wechat/errors.py
Kris 05abecc02b feat(wechat): 新增完整微信渠道适配器实现
该提交实现了支持企业微信、微信公众号、个人微信桥接三种模式的完整微信渠道适配器,包含以下核心模块:
1. 基础认证与配置相关:auth_adapter、config_reload、setup_contract等
2. 消息处理与格式转换:format、attachment_adapter、outbound_adapter等
3. 多模式客户端支持:wecom/mp子模块,包含加解密、消息收发能力
4. 辅助能力:限速器、防抖、会话绑定、事件映射、模板渲染等
5. 扩展能力:二维码登录、消息读取、特权用户、心跳监控等

实现了完整的微信生态对接能力,支持消息收发、事件处理、API调用限流、配置热重载等功能。
2026-05-12 00:51:04 +08:00

61 lines
1.9 KiB
Python

from __future__ import annotations
from typing import Any
WECOM_ERROR_CODES: dict[int, str] = {
-1: "系统繁忙,请稍后重试",
0: "请求成功",
40001: "不合法的secret参数",
40003: "不合法的UserID",
40014: "不合法的access_token",
40029: "不合法的oauth_code",
41001: "缺少access_token参数",
41002: "缺少appid参数",
42001: "access_token已过期",
43004: "需要接收者关注",
45009: "接口调用超过限制",
45011: "API调用过于频繁",
48001: "API功能未授权",
60011: "不合法的UserID列表",
}
MP_ERROR_CODES: dict[int, str] = {
-1: "系统繁忙,请稍后重试",
0: "请求成功",
40001: "获取access_token时AppSecret错误",
40002: "不合法的凭证类型",
40003: "不合法的OpenID",
40013: "不合法的AppID",
40014: "不合法的access_token",
41001: "缺少access_token参数",
41002: "缺少appid参数",
42001: "access_token超时",
43004: "需要接收者关注",
45009: "接口调用超过限制",
45015: "回复时间超过限制",
48001: "API功能未授权",
}
def parse_wecom_error(data: dict[str, Any]) -> tuple[int, str]:
if "errcode" not in data:
return (-1, data.get("errmsg") or "未知错误(err_code 缺失)")
errcode = data.get("errcode", -1)
errmsg = data.get("errmsg", "")
detail = WECOM_ERROR_CODES.get(errcode, errmsg or f"未知错误(err_code={errcode})")
return errcode, detail
def parse_mp_error(data: dict[str, Any]) -> tuple[int, str]:
if "errcode" not in data:
return (-1, data.get("errmsg") or "未知错误(err_code 缺失)")
errcode = data.get("errcode", -1)
errmsg = data.get("errmsg", "")
detail = MP_ERROR_CODES.get(errcode, errmsg or f"未知错误(err_code={errcode})")
return errcode, detail
def is_token_expired(errcode: int) -> bool:
return errcode in (40014, 42001)