openclaw-ringcentral 2026.1.29-beta1 → 2026.1.29
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.md +21 -16
- package/index.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# OpenClaw RingCentral Channel
|
|
2
2
|
|
|
3
|
-
RingCentral Team Messaging channel plugin for
|
|
3
|
+
RingCentral Team Messaging channel plugin for OpenClaw. Enables bidirectional messaging with AI assistants through RingCentral Team Messaging.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -18,37 +18,42 @@ RingCentral Team Messaging channel plugin for Moltbot. Enables bidirectional mes
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
21
|
+
npm install -g openclaw@latest
|
|
22
|
+
openclaw onboard --install-daemon
|
|
23
|
+
|
|
24
|
+
openclaw plugins install openclaw-ringcentral
|
|
25
|
+
openclaw config set channels.ringcentral.enabled true
|
|
26
|
+
openclaw config set channels.ringcentral.credentials.clientId "your-client-id"
|
|
27
|
+
openclaw config set channels.ringcentral.credentials.clientSecret "your-client-secret"
|
|
28
|
+
openclaw config set channels.ringcentral.credentials.jwt "your-jwt-token"
|
|
29
|
+
openclaw config set channels.ringcentral.credentials.server "https://platform.ringcentral.com"
|
|
30
|
+
openclaw gateway restart
|
|
29
31
|
```
|
|
30
32
|
|
|
31
33
|
Or install from tarball:
|
|
32
34
|
|
|
33
35
|
```bash
|
|
34
|
-
|
|
36
|
+
npm pack
|
|
37
|
+
openclaw plugins install ./openclaw-ringcentral-<version>.tgz
|
|
35
38
|
```
|
|
36
39
|
|
|
37
40
|
## RingCentral App Setup
|
|
38
41
|
|
|
39
42
|
1. Go to [RingCentral Developer Portal](https://developers.ringcentral.com/)
|
|
40
43
|
2. Create a new app:
|
|
41
|
-
- **App Type**: REST API App
|
|
44
|
+
- **App Type**: REST API App (most common)
|
|
42
45
|
- **Auth**: JWT auth flow
|
|
43
46
|
3. Add permissions:
|
|
44
47
|
- **Team Messaging** - Read and send messages
|
|
45
48
|
- **WebSocket Subscriptions** - Real-time event subscriptions
|
|
46
49
|
- **Read Accounts** - Read user information
|
|
50
|
+
- **Read Messages** - Read messages
|
|
51
|
+
- **WebSocket** - WebSocket access
|
|
47
52
|
4. Generate a JWT token for your user
|
|
48
53
|
|
|
49
54
|
## Configuration
|
|
50
55
|
|
|
51
|
-
Add to `~/.
|
|
56
|
+
Add to `~/.openclaw/openclaw.json`:
|
|
52
57
|
|
|
53
58
|
```json
|
|
54
59
|
{
|
|
@@ -93,10 +98,10 @@ export RINGCENTRAL_JWT="your-jwt-token"
|
|
|
93
98
|
|
|
94
99
|
## Usage
|
|
95
100
|
|
|
96
|
-
1. Start the
|
|
101
|
+
1. Start the openclaw gateway:
|
|
97
102
|
|
|
98
103
|
```bash
|
|
99
|
-
|
|
104
|
+
openclaw gateway run
|
|
100
105
|
```
|
|
101
106
|
|
|
102
107
|
2. Open RingCentral app and go to your "Personal" chat (conversation with yourself)
|
|
@@ -175,7 +180,7 @@ Add **WebSocket Subscriptions** permission in your app settings. Permission chan
|
|
|
175
180
|
|
|
176
181
|
1. Check that `selfOnly` mode matches your use case
|
|
177
182
|
2. Verify you're sending messages in a "Personal" chat (conversation with yourself)
|
|
178
|
-
3. Check gateway logs: `tail -f /tmp/
|
|
183
|
+
3. Check gateway logs: `tail -f /tmp/openclaw/openclaw-*.log | grep ringcentral`
|
|
179
184
|
|
|
180
185
|
### Rate limit errors
|
|
181
186
|
|
package/index.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { ringcentralDock, ringcentralPlugin } from "./src/channel.js";
|
|
|
5
5
|
import { setRingCentralRuntime } from "./src/runtime.js";
|
|
6
6
|
|
|
7
7
|
const plugin = {
|
|
8
|
-
id: "ringcentral",
|
|
8
|
+
id: "openclaw-ringcentral",
|
|
9
9
|
name: "RingCentral",
|
|
10
10
|
description: "OpenClaw RingCentral Team Messaging channel plugin",
|
|
11
11
|
configSchema: emptyPluginConfigSchema(),
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-ringcentral",
|
|
3
|
-
"version": "2026.1.29
|
|
3
|
+
"version": "2026.1.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"description": "OpenClaw RingCentral Team Messaging channel plugin",
|
|
@@ -20,6 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"openclaw",
|
|
23
|
+
"moltbot",
|
|
24
|
+
"clawdbot",
|
|
23
25
|
"ringcentral",
|
|
24
26
|
"team-messaging",
|
|
25
27
|
"chat",
|