2026-01-23 16:45:37 -06:00
---
summary: "Google Chat app support status, capabilities, and configuration"
read_when:
- Working on Google Chat channel features
2026-01-31 16:04:03 -05:00
title: "Google Chat"
2026-01-23 16:45:37 -06:00
---
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
# Google Chat (Chat API)
Status: ready for DMs + spaces via Google Chat API webhooks (HTTP only).
2026-02-21 11:18:29 -05:00
## Quick setup (beginner)
2026-01-31 21:13:13 +09:00
1. Create a Google Cloud project and enable the **Google Chat API ** .
2026-01-23 16:45:37 -06:00
- Go to: [Google Chat API Credentials ](https://console.cloud.google.com/apis/api/chat.googleapis.com/credentials )
- Enable the API if it is not already enabled.
2026-01-31 21:13:13 +09:00
2. Create a **Service Account ** :
2026-01-23 16:45:37 -06:00
- Press **Create Credentials ** > **Service Account ** .
2026-01-30 03:15:10 +01:00
- Name it whatever you want (e.g., `openclaw-chat` ).
2026-01-23 16:45:37 -06:00
- Leave permissions blank (press **Continue ** ).
- Leave principals with access blank (press **Done ** ).
2026-01-31 21:13:13 +09:00
3. Create and download the **JSON Key ** :
2026-01-23 16:45:37 -06:00
- In the list of service accounts, click on the one you just created.
- Go to the **Keys ** tab.
- Click **Add Key ** > **Create new key ** .
- Select **JSON ** and press **Create ** .
2026-01-31 21:13:13 +09:00
4. Store the downloaded JSON file on your gateway host (e.g., `~/.openclaw/googlechat-service-account.json` ).
5. Create a Google Chat app in the [Google Cloud Console Chat Configuration ](https://console.cloud.google.com/apis/api/chat.googleapis.com/hangouts-chat ):
2026-01-23 16:45:37 -06:00
- Fill in the **Application info ** :
2026-01-30 03:15:10 +01:00
- **App name**: (e.g. `OpenClaw` )
- **Avatar URL**: (e.g. `https://openclaw.ai/logo.png` )
2026-01-23 16:45:37 -06:00
- **Description**: (e.g. `Personal AI Assistant` )
- Enable **Interactive features ** .
- Under **Functionality ** , check **Join spaces and group conversations ** .
- Under **Connection settings ** , select **HTTP endpoint URL ** .
- Under **Triggers ** , select **Use a common HTTP endpoint URL for all triggers ** and set it to your gateway's public URL followed by `/googlechat` .
2026-01-31 21:13:13 +09:00
- _Tip: Run `openclaw status` to find your gateway's public URL._
2026-01-25 01:05:23 +00:00
- Under **Visibility ** , check **Make this Chat app available to specific people and groups in <Your Domain> ** .
2026-01-23 16:45:37 -06:00
- Enter your email address (e.g. `user@example.com` ) in the text box.
- Click **Save ** at the bottom.
2026-01-31 21:13:13 +09:00
6. **Enable the app status ** :
2026-01-23 16:45:37 -06:00
- After saving, **refresh the page ** .
- Look for the **App status ** section (usually near the top or bottom after saving).
- Change the status to **Live - available to users ** .
- Click **Save ** again.
2026-01-31 21:13:13 +09:00
7. Configure OpenClaw with the service account path + webhook audience:
2026-01-23 16:45:37 -06:00
- Env: `GOOGLE_CHAT_SERVICE_ACCOUNT_FILE=/path/to/service-account.json`
- Or config: `channels.googlechat.serviceAccountFile: "/path/to/service-account.json"` .
2026-01-31 21:13:13 +09:00
8. Set the webhook audience type + value (matches your Chat app config).
9. Start the gateway. Google Chat will POST to your webhook path.
2026-01-23 16:45:37 -06:00
## Add to Google Chat
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
Once the gateway is running and your email is added to the visibility list:
2026-01-31 21:13:13 +09:00
1. Go to [Google Chat ](https://chat.google.com/ ).
2. Click the * * +** (plus) icon next to **Direct Messages ** .
3. In the search bar (where you usually add people), type the **App name ** you configured in the Google Cloud Console.
- **Note**: The bot will _ not _ appear in the "Marketplace" browse list because it is a private app. You must search for it by name.
4. Select your bot from the results.
5. Click **Add ** or **Chat ** to start a 1:1 conversation.
6. Send "Hello" to trigger the assistant!
2026-01-23 16:45:37 -06:00
## Public URL (Webhook-only)
2026-01-31 21:13:13 +09:00
2026-01-30 03:15:10 +01:00
Google Chat webhooks require a public HTTPS endpoint. For security, **only expose the `/googlechat` path ** to the internet. Keep the OpenClaw dashboard and other sensitive endpoints on your private network.
2026-01-23 16:45:37 -06:00
### Option A: Tailscale Funnel (Recommended)
2026-01-31 21:13:13 +09:00
2026-01-24 02:42:02 +00:00
Use Tailscale Serve for the private dashboard and Funnel for the public webhook path. This keeps `/` private while exposing only `/googlechat` .
2026-01-23 16:45:37 -06:00
1. **Check what address your gateway is bound to: **
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
```bash
ss -tlnp | grep 18789
` ``
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
Note the IP address (e.g., ` 127.0.0.1`, ` 0.0.0.0`, or your Tailscale IP like ` 100.x.x.x`).
2026-01-24 02:42:02 +00:00
2. **Expose the dashboard to the tailnet only (port 8443):**
2026-01-31 21:13:13 +09:00
2026-01-24 02:42:02 +00:00
` ``bash
# If bound to localhost (127.0.0.1 or 0.0.0.0):
tailscale serve --bg --https 8443 http://127.0.0.1:18789
# If bound to Tailscale IP only (e.g., 100.106.161.80):
tailscale serve --bg --https 8443 http://100.106.161.80:18789
` ``
3. **Expose only the webhook path publicly:**
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
` ``bash
# If bound to localhost (127.0.0.1 or 0.0.0.0):
tailscale funnel --bg --set-path /googlechat http://127.0.0.1:18789/googlechat
# If bound to Tailscale IP only (e.g., 100.106.161.80):
tailscale funnel --bg --set-path /googlechat http://100.106.161.80:18789/googlechat
` ``
2026-01-24 02:42:02 +00:00
4. **Authorize the node for Funnel access:**
2026-01-23 16:45:37 -06:00
If prompted, visit the authorization URL shown in the output to enable Funnel for this node in your tailnet policy.
2026-01-24 02:42:02 +00:00
5. **Verify the configuration:**
2026-02-06 10:08:59 -05:00
2026-01-23 16:45:37 -06:00
` ``bash
2026-01-24 02:42:02 +00:00
tailscale serve status
2026-01-23 16:45:37 -06:00
tailscale funnel status
` ``
Your public webhook URL will be:
` https://<node-name>.<tailnet>.ts.net/googlechat`
2026-01-24 02:42:02 +00:00
Your private dashboard stays tailnet-only:
` https://<node-name>.<tailnet>.ts.net:8443/`
Use the public URL (without ` :8443`) in the Google Chat app config.
2026-01-23 16:45:37 -06:00
2026-01-24 02:42:02 +00:00
> Note: This configuration persists across reboots. To remove it later, run ` tailscale funnel reset` and ` tailscale serve reset`.
2026-01-23 16:45:37 -06:00
### Option B: Reverse Proxy (Caddy)
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
If you use a reverse proxy like Caddy, only proxy the specific path:
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
` ``caddy
your-domain.com {
reverse_proxy /googlechat* localhost:18789
}
` ``
2026-01-31 21:13:13 +09:00
2026-01-30 03:15:10 +01:00
With this config, any request to ` your-domain.com/` will be ignored or returned as 404, while ` your-domain.com/googlechat` is safely routed to OpenClaw.
2026-01-23 16:45:37 -06:00
### Option C: Cloudflare Tunnel
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
Configure your tunnel's ingress rules to only route the webhook path:
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
- **Path**: ` /googlechat` -> ` http://localhost:18789/googlechat`
- **Default Rule**: HTTP 404 (Not Found)
## How it works
1. Google Chat sends webhook POSTs to the gateway. Each request includes an ` Authorization: Bearer <token>` header.
2026-01-30 03:15:10 +01:00
2. OpenClaw verifies the token against the configured ` audienceType` + ` audience`:
2026-01-23 16:45:37 -06:00
- ` audienceType: "app-url"` → audience is your HTTPS webhook URL.
- ` audienceType: "project-number"` → audience is the Cloud project number.
3. Messages are routed by space:
- DMs use session key ` agent:<agentId>:googlechat:dm:<spaceId>`.
- Spaces use session key ` agent:<agentId>:googlechat:group:<spaceId>`.
4. DM access is pairing by default. Unknown senders receive a pairing code; approve with:
2026-01-30 03:15:10 +01:00
- ` openclaw pairing approve googlechat <code>`
2026-01-23 16:45:37 -06:00
5. Group spaces require @-mention by default. Use ` botUser` if mention detection needs the app’ s user name.
## Targets
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
Use these identifiers for delivery and allowlists:
2026-01-31 21:13:13 +09:00
2026-02-24 01:01:51 +00:00
- Direct messages: ` users/<userId>` (recommended).
- Raw email ` name@example .com` is mutable and only used for direct allowlist matching when ` channels.googlechat.dangerouslyAllowNameMatching: true`.
2026-02-14 15:31:26 +01:00
- Deprecated: ` users/<email>` is treated as a user id, not an email allowlist.
2026-01-23 16:45:37 -06:00
- Spaces: ` spaces/<spaceId>`.
## Config highlights
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
` ``json5
{
channels: {
2026-01-31 21:13:13 +09:00
googlechat: {
2026-01-23 16:45:37 -06:00
enabled: true,
serviceAccountFile: "/path/to/service-account.json",
audienceType: "app-url",
audience: "https://gateway.example.com/googlechat",
webhookPath: "/googlechat",
botUser: "users/1234567890", // optional; helps mention detection
dm: {
policy: "pairing",
2026-02-24 01:01:51 +00:00
allowFrom: ["users/1234567890"],
2026-01-23 16:45:37 -06:00
},
groupPolicy: "allowlist",
groups: {
"spaces/AAAA": {
allow: true,
requireMention: true,
users: ["users/1234567890"],
2026-01-31 21:13:13 +09:00
systemPrompt: "Short answers only.",
},
2026-01-23 16:45:37 -06:00
},
actions: { reactions: true },
2026-01-24 23:23:24 +00:00
typingIndicator: "message",
2026-01-31 21:13:13 +09:00
mediaMaxMb: 20,
},
},
2026-01-23 16:45:37 -06:00
}
` ``
Notes:
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
- Service account credentials can also be passed inline with ` serviceAccount` (JSON string).
- Default webhook path is ` /googlechat` if ` webhookPath` isn’ t set.
2026-02-24 01:01:51 +00:00
- ` dangerouslyAllowNameMatching` re-enables mutable email principal matching for allowlists (break-glass compatibility mode).
2026-01-23 16:45:37 -06:00
- Reactions are available via the ` reactions` tool and ` channels action` when ` actions.reactions` is enabled.
2026-01-24 23:23:24 +00:00
- ` typingIndicator` supports ` none`, ` message` (default), and ` reaction` (reaction requires user OAuth).
2026-01-23 16:45:37 -06:00
- Attachments are downloaded through the Chat API and stored in the media pipeline (size capped by ` mediaMaxMb`).
## Troubleshooting
2026-01-24 01:12:48 +00:00
### 405 Method Not Allowed
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
If Google Cloud Logs Explorer shows errors like:
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
` ``
status code: 405, reason phrase: HTTP error response: HTTP/1.1 405 Method Not Allowed
` ``
This means the webhook handler isn't registered. Common causes:
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
1. **Channel not configured**: The ` channels.googlechat` section is missing from your config. Verify with:
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
` ``bash
2026-01-30 03:15:10 +01:00
openclaw config get channels.googlechat
2026-01-24 01:12:48 +00:00
` ``
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
If it returns "Config path not found", add the configuration (see [Config highlights](#config-highlights)).
2. **Plugin not enabled**: Check plugin status:
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
` ``bash
2026-01-30 03:15:10 +01:00
openclaw plugins list | grep googlechat
2026-01-24 01:12:48 +00:00
` ``
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
If it shows "disabled", add ` plugins.entries.googlechat.enabled: true` to your config.
3. **Gateway not restarted**: After adding config, restart the gateway:
2026-02-06 10:08:59 -05:00
2026-01-24 01:12:48 +00:00
` ``bash
2026-01-30 03:15:10 +01:00
openclaw gateway restart
2026-01-24 01:12:48 +00:00
` ``
Verify the channel is running:
2026-01-31 21:13:13 +09:00
2026-01-24 01:12:48 +00:00
` ``bash
2026-01-30 03:15:10 +01:00
openclaw channels status
2026-01-24 01:12:48 +00:00
# Should show: Google Chat default: enabled, configured, ...
` ``
### Other issues
2026-01-31 21:13:13 +09:00
2026-01-30 03:15:10 +01:00
- Check ` openclaw channels status --probe` for auth errors or missing audience config.
2026-01-24 01:12:48 +00:00
- If no messages arrive, confirm the Chat app's webhook URL + event subscriptions.
- If mention gating blocks replies, set ` botUser` to the app's user resource name and verify ` requireMention`.
2026-01-30 03:15:10 +01:00
- Use ` openclaw logs --follow` while sending a test message to see if requests reach the gateway.
2026-01-23 16:45:37 -06:00
Related docs:
2026-01-31 21:13:13 +09:00
2026-01-23 16:45:37 -06:00
- [Gateway configuration ](/gateway/configuration )
- [Security ](/gateway/security )
- [Reactions ](/tools/reactions )