docs(channels): add QQ channel configuration guide (#219)

This commit is contained in:
Ringo.Typowriter
2026-03-09 23:37:28 +08:00
committed by GitHub
parent a2cb5939d7
commit f8bfd7c107
4 changed files with 48 additions and 0 deletions
+4
View File
@@ -110,6 +110,10 @@ export const en = [
text: 'Discord',
link: '/channels/discord.md'
},
{
text: 'QQ',
link: '/channels/qq.md'
},
]
},
]
+1
View File
@@ -7,6 +7,7 @@ Memoh currently supports the following channels:
- **[Telegram](./telegram)**: The most feature-rich integration with streaming and attachment support.
- **[Feishu (Lark)](./feishu)**: Enterprise-ready integration for business workflows.
- **[Discord](./discord)**: Community-focused integration for servers and direct messages.
- **[QQ](./qq)**: Quick setup for personal DM bots via the dedicated AI bot registration portal.
- **Email**: Connect via standard SMTP and IMAP (configured through Email Providers).
- **Web**: Built-in chat interface for immediate access.
+42
View File
@@ -0,0 +1,42 @@
# QQ Channel Configuration
Connecting your Memoh Bot to QQ allows it to interact with users through QQ's official Bot platform.
## Step 1: Create a QQ Bot
1. Go to the [QQ Bot Open Platform](https://q.qq.com/qqbot/openclaw/) and log in with your QQ account.
2. Click **Create Bot** (创建机器人) - no approval required. Each account can create up to 5 bots.
3. Copy the **AppID** and **AppSecret** displayed on the page.
> **Important**: AppSecret is only shown once. Save it securely - viewing it again will force a reset.
## Step 2: Configure Memoh
1. Go to your Bot's **Channels** tab in the Memoh Web UI.
2. Click **Add Channel** and select **QQ**.
3. Paste your **AppID** and **AppSecret**.
4. Configure optional settings:
- **Markdown Support**: Enable Markdown formatting (default: enabled).
- **Enable Input Hint**: Show typing indicators (default: enabled).
5. Click **Save and Enable**.
## Step 3: Bind Your Identity (Optional)
If your bot is a `personal` type bot, bind your QQ identity to chat with it directly:
1. In Memoh Web UI, go to **Settings** > **Bind Code**.
2. Select **QQ** and click **Generate**.
3. Copy the code and send it to your bot in a QQ direct message.
## Features Supported
- **Message Content**: Full support for text messages.
- **Markdown**: Rich formatting with bold, italic, code blocks, and links.
- **Attachments**: Support for images and files.
- **Typing Indicators**: Visual feedback while generating responses.
- **Target Types**: C2C (direct message), group, and channel.
## Official Resources
- [QQ Bot Open Platform](https://q.qq.com/)
- [QQ Bot Documentation](https://bot.q.qq.com/wiki/)
+1
View File
@@ -19,6 +19,7 @@ For detailed step-by-step guides on how to create and configure bots for each pl
- **[Telegram Configuration](/channels/telegram)**
- **[Feishu (Lark) Configuration](/channels/feishu)**
- **[Discord Configuration](/channels/discord)**
- **[QQ Configuration](/channels/qq)**
---