帮助开发者构建 Zoom Team Chat 集成、聊天机器人与交互式消息体验。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "build-zoom-team-chat-app" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/partner-built/zoom-plugin/skills/team-chat/SKILL.md 2. 保存为 ~/.claude/skills/team-chat/SKILL.md 3. 装好后重载技能,告诉我可以用了
请帮我设计一个 Zoom Team Chat 机器人,用于回答员工常见问题。请给出消息流程、事件处理逻辑、用户身份范围设计,以及基本的实现步骤。
一份聊天机器人方案,包含交互流程、关键接口与实现建议。
我想在 Zoom Team Chat 中发送带按钮的富卡片消息,用于审批提醒。请生成卡片结构示例、按钮交互逻辑,以及后端回调处理思路。
可用于审批场景的富消息卡片示例,以及按钮和回调处理方案。
请为 Zoom Team Chat 设计一个 /status 斜杠命令,用户输入后可查询项目状态。请说明命令解析、权限校验、响应消息格式和异常处理。
一套斜杠命令实现方案,覆盖解析、鉴权、响应与错误处理。
Background reference for Zoom Team Chat integrations. Use this after the workflow is clear, especially when the Team Chat API versus Chatbot API distinction matters.
There are two different integration types and they are not interchangeable:
Team Chat API (user type)
authorization_code)/v2/chat/users/...Chatbot API (bot type)
client_credentials)/v2/im/chat/messagesIf you choose the wrong type early, auth/scopes/endpoints all mismatch and implementation fails.
Official Documentation: https://developers.zoom.us/docs/team-chat/
Chatbot Documentation:
:
New to Team Chat? Follow this path:
Reference:
Having issues?
OAuth endpoint sanity check:
https://zoom.us/oauth/authorizehttps://zoom.us/oauth/token/oauth/token returns 404/HTML, use https://zoom.us/oauth/token.Building Interactive Bots?
| Use Case | API to Use |
|---|---|
| Send notifications from scripts/CI/CD | Team Chat API |
| Automate messages as a user | Team Chat API |
| Build an interactive chatbot | Chatbot API |
| Respond to slash commands | Chatbot API |
| Create messages with buttons/forms | Chatbot API |
| Handle user interactions | Chatbot API |
POST https://api.zoom.us/v2/chat/users/me/messageschat_message:write, chat_channel:readPOST https://api.zoom.us/v2/im/chat/messagesimchat:bot (auto-added)…
围绕客户问题进行多来源调研与溯源,快速整理背景并支持准确回复。
帮助开发者构建和排查 Zoom 联络中心集成、状态管理与回呼流程