@marshulll/openclaw-wecom 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +2 -0
- package/README.md +2 -0
- package/README.zh.md +2 -0
- package/docs/INSTALL.md +32 -0
- package/docs/wecom.config.full.example.json +10 -24
- package/package.json +1 -1
package/README.en.md
CHANGED
|
@@ -99,3 +99,5 @@ Install guide: `docs/INSTALL.md`
|
|
|
99
99
|
- Dev doc: `docs/TECHNICAL.md`
|
|
100
100
|
- Install: `docs/INSTALL.md`
|
|
101
101
|
- Examples: `docs/wecom.config.example.json` / `docs/wecom.config.full.example.json`
|
|
102
|
+
|
|
103
|
+
Recommendation: use **separate webhookPath** for Bot and App (e.g. `/wecom/bot` and `/wecom/app`) for clearer debugging and fewer callback mix-ups.
|
package/README.md
CHANGED
package/README.zh.md
CHANGED
package/docs/INSTALL.md
CHANGED
|
@@ -50,6 +50,37 @@ openclaw gateway restart
|
|
|
50
50
|
}
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
推荐示例(Bot/App 独立路径):
|
|
54
|
+
```json5
|
|
55
|
+
{
|
|
56
|
+
"channels": {
|
|
57
|
+
"wecom": {
|
|
58
|
+
"enabled": true,
|
|
59
|
+
"mode": "both",
|
|
60
|
+
"defaultAccount": "bot",
|
|
61
|
+
"accounts": {
|
|
62
|
+
"bot": {
|
|
63
|
+
"mode": "bot",
|
|
64
|
+
"webhookPath": "/wecom/bot",
|
|
65
|
+
"token": "BOT_TOKEN",
|
|
66
|
+
"encodingAESKey": "BOT_AES",
|
|
67
|
+
"receiveId": "BOT_ID"
|
|
68
|
+
},
|
|
69
|
+
"app": {
|
|
70
|
+
"mode": "app",
|
|
71
|
+
"webhookPath": "/wecom/app",
|
|
72
|
+
"corpId": "CORP_ID",
|
|
73
|
+
"corpSecret": "CORP_SECRET",
|
|
74
|
+
"agentId": 1000001,
|
|
75
|
+
"callbackToken": "CALLBACK_TOKEN",
|
|
76
|
+
"callbackAesKey": "CALLBACK_AES"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
53
84
|
## 环境变量示例(可选)
|
|
54
85
|
|
|
55
86
|
如果你更希望用环境变量,也可以写在 `~/.openclaw/openclaw.json` 的 `env.vars` 中(优先级低于 `channels.wecom` 配置):
|
|
@@ -99,6 +130,7 @@ openclaw gateway restart
|
|
|
99
130
|
## Webhook 验证
|
|
100
131
|
- Bot 模式与 App 模式都要求公网 HTTPS。
|
|
101
132
|
- 在企业微信后台配置回调 URL。
|
|
133
|
+
- 建议 Bot 与 App 使用不同 `webhookPath`,便于排障与避免回调混淆。
|
|
102
134
|
|
|
103
135
|
## 常见问题
|
|
104
136
|
- 回调验证失败:检查 Token / AESKey / URL 是否一致
|
|
@@ -3,17 +3,6 @@
|
|
|
3
3
|
"wecom": {
|
|
4
4
|
"enabled": true,
|
|
5
5
|
"mode": "both",
|
|
6
|
-
"webhookPath": "/wecom",
|
|
7
|
-
|
|
8
|
-
"token": "BOT_TOKEN",
|
|
9
|
-
"encodingAESKey": "BOT_AES",
|
|
10
|
-
"receiveId": "BOT_ID",
|
|
11
|
-
|
|
12
|
-
"corpId": "CORP_ID",
|
|
13
|
-
"corpSecret": "CORP_SECRET",
|
|
14
|
-
"agentId": 1000001,
|
|
15
|
-
"callbackToken": "CALLBACK_TOKEN",
|
|
16
|
-
"callbackAesKey": "CALLBACK_AES",
|
|
17
6
|
|
|
18
7
|
"media": {
|
|
19
8
|
"tempDir": "/tmp/openclaw-wecom",
|
|
@@ -28,26 +17,23 @@
|
|
|
28
17
|
"allowFrom": []
|
|
29
18
|
},
|
|
30
19
|
|
|
31
|
-
"defaultAccount": "
|
|
20
|
+
"defaultAccount": "bot",
|
|
32
21
|
"accounts": {
|
|
33
|
-
"
|
|
34
|
-
"mode": "
|
|
35
|
-
"webhookPath": "/wecom",
|
|
22
|
+
"bot": {
|
|
23
|
+
"mode": "bot",
|
|
24
|
+
"webhookPath": "/wecom/bot",
|
|
36
25
|
"token": "BOT_TOKEN",
|
|
37
26
|
"encodingAESKey": "BOT_AES",
|
|
38
|
-
"receiveId": "BOT_ID"
|
|
27
|
+
"receiveId": "BOT_ID"
|
|
28
|
+
},
|
|
29
|
+
"app": {
|
|
30
|
+
"mode": "app",
|
|
31
|
+
"webhookPath": "/wecom/app",
|
|
39
32
|
"corpId": "CORP_ID",
|
|
40
33
|
"corpSecret": "CORP_SECRET",
|
|
41
34
|
"agentId": 1000001,
|
|
42
35
|
"callbackToken": "CALLBACK_TOKEN",
|
|
43
|
-
"callbackAesKey": "CALLBACK_AES"
|
|
44
|
-
"media": {
|
|
45
|
-
"tempDir": "/tmp/openclaw-wecom",
|
|
46
|
-
"retentionHours": 72,
|
|
47
|
-
"cleanupOnStart": true,
|
|
48
|
-
"maxBytes": 10485760
|
|
49
|
-
},
|
|
50
|
-
"botMediaBridge": true
|
|
36
|
+
"callbackAesKey": "CALLBACK_AES"
|
|
51
37
|
}
|
|
52
38
|
}
|
|
53
39
|
}
|