---
read_when:
    - 你想将 OpenClaw 连接到微信或微信
    - 你正在安装 openclaw-weixin 渠道插件或对其进行故障排除
    - 你需要了解外部渠道插件如何在 Gateway 网关旁运行
summary: 通过外部 openclaw-weixin 插件设置微信渠道
title: 微信
x-i18n:
    generated_at: "2026-05-06T00:47:46Z"
    model: gpt-5.5
    provider: openai
    source_hash: 803557a4fc92056c63053a3388100a451b2d85d4e892877707b3c2e3a677c0b0
    source_path: channels/wechat.md
    workflow: 16
---

OpenClaw 通过腾讯的外部 `@tencent-weixin/openclaw-weixin` 渠道插件连接到微信。

Status：外部插件。当前支持直接聊天和媒体。当前插件的能力元数据未声明群聊支持。

## 命名

- **微信** 是这些文档中的面向用户名称。
- **微信** 是腾讯包和插件 id 使用的名称。
- `openclaw-weixin` 是 OpenClaw 渠道 id。
- `@tencent-weixin/openclaw-weixin` 是 npm 包。

在 CLI 命令和配置路径中使用 `openclaw-weixin`。

## 工作原理

微信代码不在 OpenClaw 核心仓库中。OpenClaw 提供通用的渠道插件契约，外部插件提供微信专用运行时：

1. `openclaw plugins install` 安装 `@tencent-weixin/openclaw-weixin`。
2. Gateway 网关发现插件清单并加载插件入口点。
3. 插件注册渠道 id `openclaw-weixin`。
4. `openclaw channels login --channel openclaw-weixin` 启动二维码登录。
5. 插件将账号凭证存储在 OpenClaw 状态目录下。
6. Gateway 网关启动时，插件会为每个已配置账号启动其微信监控器。
7. 入站微信消息会通过渠道契约规范化，路由到选定的 OpenClaw 智能体，并通过插件出站路径发回。

这种分离很重要：OpenClaw 核心应保持与渠道无关。微信登录、腾讯 iLink API 调用、媒体上传/下载、上下文令牌和账号监控都由外部插件拥有。

## 安装

快速安装：

```bash
npx -y @tencent-weixin/openclaw-weixin-cli install
```

手动安装：

```bash
openclaw plugins install "@tencent-weixin/openclaw-weixin"
openclaw config set plugins.entries.openclaw-weixin.enabled true
```

安装后重启 Gateway 网关：

```bash
openclaw gateway restart
```

## 登录

在运行 Gateway 网关的同一台机器上运行二维码登录：

```bash
openclaw channels login --channel openclaw-weixin
```

用手机上的微信扫描二维码并确认登录。成功扫码后，插件会在本地保存账号令牌。

要添加另一个微信账号，请再次运行相同的登录命令。对于多个账号，请按账号、渠道和发送者隔离私信会话：

```bash
openclaw config set session.dmScope per-account-channel-peer
```

## 访问控制

私信使用渠道插件的标准 OpenClaw 配对和允许列表模型。

批准新的发送者：

```bash
openclaw pairing list openclaw-weixin
openclaw pairing approve openclaw-weixin <CODE>
```

完整访问控制模型请参阅[配对](/zh-CN/channels/pairing)。

## 兼容性

插件会在启动时检查宿主 OpenClaw 版本。

| 插件线 | OpenClaw 版本           | npm 标签 |
| ----------- | ----------------------- | -------- |
| `2.x`       | `>=2026.3.22`           | `latest` |
| `1.x`       | `>=2026.1.0 <2026.3.22` | `legacy` |

如果插件报告你的 OpenClaw 版本太旧，请更新 OpenClaw，或安装旧版插件线：

```bash
openclaw plugins install @tencent-weixin/openclaw-weixin@legacy
```

## Sidecar 进程

微信插件可以在监控腾讯 iLink API 时，在 Gateway 网关旁运行辅助工作。在 issue #68451 中，该辅助路径暴露了 OpenClaw 通用过期 Gateway 网关清理中的一个 bug：子进程可能尝试清理父 Gateway 网关进程，导致在 systemd 等进程管理器下出现重启循环。

当前 OpenClaw 启动清理会排除当前进程及其祖先进程，因此渠道辅助进程不得杀死启动它的 Gateway 网关。此修复是通用的；它不是核心中的微信专用路径。

## 故障排除

检查安装和状态：

```bash
openclaw plugins list
openclaw channels status --probe
openclaw --version
```

如果渠道显示为已安装但没有连接，请确认插件已启用并重启：

```bash
openclaw config set plugins.entries.openclaw-weixin.enabled true
openclaw gateway restart
```

如果启用微信后 Gateway 网关反复重启，请同时更新 OpenClaw 和插件：

```bash
npm view @tencent-weixin/openclaw-weixin version
openclaw plugins install "@tencent-weixin/openclaw-weixin" --force
openclaw gateway restart
```

如果启动时报告已安装的插件包 `requires compiled runtime
output for TypeScript entry`，说明该 npm 包发布时缺少 OpenClaw 所需的已编译 JavaScript 运行时文件。请在插件发布者发布修复包后更新/重新安装，或临时禁用/卸载该插件。

临时禁用：

```bash
openclaw config set plugins.entries.openclaw-weixin.enabled false
openclaw gateway restart
```

## 相关文档

- 渠道概览：[聊天渠道](/zh-CN/channels)
- 配对：[配对](/zh-CN/channels/pairing)
- 渠道路由：[渠道路由](/zh-CN/channels/channel-routing)
- 插件架构：[插件架构](/zh-CN/plugins/architecture)
- 渠道插件 SDK：[渠道插件 SDK](/zh-CN/plugins/sdk-channel-plugins)
- 外部包：[@tencent-weixin/openclaw-weixin](https://www.npmjs.com/package/@tencent-weixin/openclaw-weixin)
