VibeAround
ConfigureChannels

Connect DingTalk

DingTalk uses Stream Mode (WebSocket) — no public callback URL needed.

Documentation notice: these docs are currently generated with Codex and are being actively reviewed, expanded, and refined.

DingTalk uses Stream Mode (WebSocket) — no public callback URL needed.

Platform setup

  1. Create an app at the DingTalk Open Platform.
  2. Enable Stream Mode in the app settings.
  3. Copy the Client ID and Client Secret.
  4. Grant message-event permissions in the app permission list.

Configuration

Required fields: client_id, client_secret.

{
  "channels": {
    "dingtalk": {
      "client_id": "your-client-id",
      "client_secret": "your-client-secret",
      "verbose": { "show_thinking": true, "show_tool_use": true }
    }
  }
}

Older guides named these fields app_key / app_secret — the plugin requires client_id / client_secret.

Behavior

  • Nothing arrives? Stream Mode not enabled is the usual cause.

Source anchors: va-plugin-channel-dingtalk src/main.ts (requiredConfig: client_id, client_secret). Last verified: v0.7.11

On this page