mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-03-02 16:29:20 +08:00
59 lines
2.2 KiB
Plaintext
59 lines
2.2 KiB
Plaintext
---
|
|
title: DingTalk
|
|
description: Integrate CowAgent into DingTalk application
|
|
---
|
|
|
|
Integrate CowAgent into DingTalk by creating an intelligent robot app on the DingTalk Open Platform.
|
|
|
|
## 1. Create App
|
|
|
|
1. Go to [DingTalk Developer Console](https://open-dev.dingtalk.com/fe/app#/corp/app), log in and click **Create App**, fill in the app information:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-create-app.png" width="800"/>
|
|
|
|
2. Click **Add App Capability**, select **Robot** capability and click **Add**:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-add-bot.png" width="800"/>
|
|
|
|
3. Configure the robot information and click **Publish**. After publishing, click "**Debug**" to automatically create a test group chat, which can be viewed in the client:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-config-bot.png" width="600"/>
|
|
|
|
4. Click **Version Management & Release**, create a new version and publish:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-publish-bot.png" width="700"/>
|
|
|
|
## 2. Project Configuration
|
|
|
|
1. Click **Credentials & Basic Info**, get the `Client ID` and `Client Secret`:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-get-secret.png" width="700"/>
|
|
|
|
2. Add the following configuration to `config.json` in the project root:
|
|
|
|
```json
|
|
{
|
|
"channel_type": "dingtalk",
|
|
"dingtalk_client_id": "YOUR_CLIENT_ID",
|
|
"dingtalk_client_secret": "YOUR_CLIENT_SECRET"
|
|
}
|
|
```
|
|
|
|
3. Install the dependency:
|
|
|
|
```bash
|
|
pip3 install dingtalk_stream
|
|
```
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-app-config.png" width="700"/>
|
|
|
|
4. After starting the project, go to the DingTalk Developer Console, click **Event Subscription**, then click **Connection verified, verify channel**. When "**Connection successful**" is displayed, the configuration is complete:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-event-sub.png" width="700"/>
|
|
|
|
## 3. Usage
|
|
|
|
Chat privately with the robot or add it to an enterprise group to start a conversation:
|
|
|
|
<img src="https://img-1317903499.cos.ap-guangzhou.myqcloud.com/docs/dingtalk-hosting-demo.png" width="650"/>
|