Install
openclaw skills install dingtalkDingTalk channel plugin for OpenClaw - send and receive messages via DingTalk (钉钉)
openclaw skills install dingtalkConnect OpenClaw to DingTalk (钉钉) for enterprise messaging.
export DINGTALK_CLIENT_ID="your-app-key"
export DINGTALK_CLIENT_SECRET="your-app-secret"
openclaw config --section channels
# Select DingTalk and follow prompts
Or manually edit config:
channels:
dingtalk:
enabled: true
clientId: "ding6kntxc33nvloty5z"
clientSecret: "your-secret"
dmPolicy: "allowlist" # or "open", "pairing"
allowFrom:
- "user001"
- "user002"
groupPolicy: "allowlist" # or "open", "disabled"
groupAllowFrom:
- "chat001"
For group robot webhooks:
channels:
dingtalk:
enabled: true
webhookUrl: "https://oapi.dingtalk.com/robot/send?access_token=xxxxx"
webhookSecret: "SECxxxxx" # optional, for signature verification
await message({
channel: "dingtalk",
target: "user-id",
text: "Hello from OpenClaw!"
});
Configure DingTalk callback URL to point to your OpenClaw Gateway:
https://your-gateway/webhook/dingtalk
Error: "invalid timestamp"
Error: "app not authorized"
Error: "ip not in whitelist"
This plugin is in beta. Report issues at: https://github.com/openclaw/openclaw
MIT