该提交实现了完整的抖音开放平台IM渠道插件,包含: 1. 基础配置与账号管理能力 2. 消息去重、安全策略校验 3. 流式回复、多媒体消息发送 4. Webhook回调处理与事件解析 5. 配对认证与流量限流机制
31 lines
890 B
JSON
31 lines
890 B
JSON
{
|
|
"id": "douyin",
|
|
"name": "抖音",
|
|
"version": "0.1.0",
|
|
"label": "Douyin",
|
|
"aliases": ["douyin", "dy"],
|
|
"description": "抖音渠道插件,支持抖音小程序 IM 私信 Webhook 回调模式的消息收发",
|
|
"author": "ForcePilot Team",
|
|
"order": 50,
|
|
"dependencies": ["httpx"],
|
|
"capabilities": {
|
|
"chat_types": ["direct"],
|
|
"message_types": ["text", "image", "video", "card"],
|
|
"reactions": false,
|
|
"typing_indicator": false,
|
|
"threads": false,
|
|
"edit": false,
|
|
"unsend": true,
|
|
"reply": false,
|
|
"media": true,
|
|
"effects": false,
|
|
"native_commands": false,
|
|
"polls": false,
|
|
"group_management": false,
|
|
"streaming": true,
|
|
"streaming_mode": "block",
|
|
"block_streaming": true
|
|
},
|
|
"enabled": true,
|
|
"python_requires": ">=3.12"
|
|
} |