帮助开发者基于 Zoom Apps SDK 构建运行在 Zoom 客户端内的网页应用功能。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "zoom-apps-sdk" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/partner-built/zoom-plugin/skills/zoom-apps-sdk/SKILL.md 2. 保存为 ~/.claude/skills/zoom-apps-sdk/SKILL.md 3. 装好后重载技能,告诉我可以用了
我正在开发一个运行在 Zoom 会议中的网页应用,请用 Zoom Apps SDK 给我写一个最小可用的初始化示例,包括获取上下文、检测运行环境,以及在页面加载后安全调用 SDK 的代码。
一份可直接改造的前端示例代码,展示 Zoom Apps SDK 的初始化、上下文读取与环境检测流程。
请基于 Zoom Apps SDK 设计一个会中协作白板小功能,说明需要用到的 SDK 能力、页面结构、用户交互流程,以及前后端的实现要点。
一个结构清晰的功能方案,涵盖 SDK 能力映射、交互设计与实现建议。
我的 Zoom 应用在客户端内无法正常调用 SDK,请帮我列出常见排查步骤,包括权限配置、运行环境限制、事件监听、错误处理和日志记录建议。
一份系统化的排错清单,帮助定位 Zoom 客户端内应用的集成与调用问题。
Background reference for web apps that run inside the Zoom client. Prefer choose-zoom-approach first, then route here for Layers API, Collaborate Mode, in-client OAuth, and runtime constraints.
Build web apps that run inside the Zoom client - meetings, webinars, main client, and Zoom Phone.
Official Documentation: https://developers.zoom.us/docs/zoom-apps/ SDK Reference: https://appssdk.zoom.us/ NPM Package: https://www.npmjs.com/package/@zoom/appssdk
New to Zoom Apps? Follow this path:
Reference:
Having issues?
Building immersive experiences?
Need help with OAuth? See the zoom-oauth skill for authentication flows.
The Zoom Apps SDK (@zoom/appssdk) provides JavaScript APIs for web apps running in Zoom's embedded browser:
npm install @zoom/appssdk
import zoomSdk from '@zoom/appssdk';
async function init() {
try {
const configResponse = await zoomSdk.config({
capabilities: [
'shareApp',
'getMeetingContext',
'getUserContext',
'openUrl'
],
version: '0.16'
});
console.log('Running context:', configResponse.runningContext);
// 'inMeeting' | 'inMainClient' | 'inWebinar' | 'inImmersive' | ...
…
围绕客户问题进行多来源调研与溯源,快速整理背景并支持准确回复。
提供 Zoom 平台通用参考,帮助梳理认证、权限、应用模型与接口选型。