帮助开发者将 Zoom 会议能力深度集成到 Windows 原生桌面应用中
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "zoom-meeting-sdk-windows" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/partner-built/zoom-plugin/skills/meeting-sdk/windows/SKILL.md 2. 保存为 ~/.claude/skills/windows/SKILL.md 3. 装好后重载技能,告诉我可以用了
请说明如何在 Windows 原生 C++ 桌面应用中集成 Zoom Meeting SDK,使用自定义 UI 而不是默认界面,并给出初始化 SDK、加入会议、处理 Windows 消息循环的示例代码。
一份集成步骤说明,包含 C++ 示例代码、关键回调说明和 Windows 消息循环处理要点。
请演示如何使用 Zoom Meeting SDK for Windows 订阅会议中的原始视频和音频数据,包括启用相关能力、注册回调、接收帧数据,并说明常见权限与性能注意事项。
一套原始音视频数据接入示例,附带回调结构、数据流说明和性能优化建议。
请给出一个基于 Zoom Meeting SDK for Windows 的 headless bot 设计方案,用于自动加入会议、静默监听状态、触发录制或转写流程,并说明架构模式与异常处理策略。
一个适用于自动化场景的机器人架构方案,包含流程设计、核心模块划分和异常恢复建议。
Embed Zoom meeting capabilities into Windows desktop applications for native C++ integrations and headless bots.
The fastest way to master the SDK:
Building a Custom UI?
Having issues?
Need help with authentication? See the zoom-oauth skill for JWT token generation.
IMPORTANT: These are hard-won preferences from real project experience. Follow these when creating new projects.
.vcxprojAlways create a native Visual Studio .sln + .vcxproj project, not a CMake project. Reasons:
.sln to open in Visual Studio immediatelyconfig.json must be visible in Solution ExplorerThe config.json file (containing sdk_jwt, meeting_number, passcode) must be:
.vcxproj as a <None> item with <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>.vcxproj.filters file so it appears under a "Config" folder in Solution ExplorerExample .vcxproj entry:
<ItemGroup>
<None Include="config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Example .vcxproj.filters entry:
<ItemGroup>
<Filter Include="Config">
<UniqueIdentifier>{GUID-HERE}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<None Include="config.json">
<Filter>Config</Filter>
</None>
</ItemGroup>
The Windows SDK is a C++ native SDK designed for:
The SDK follows a universal 3-step pattern for every feature:
meetingService->Get[Feature]Controller()…
在分享分析结论前,检查方法、计算、偏差与结论是否可靠
生成人员规模、流失率、多元化与组织健康等人力分析报告
帮助识别、分类并排序技术债,明确重构与代码健康改进优先级。
帮助你为具体产品场景选择合适的 Zoom 能力层,并清晰说明技术取舍。
根据已批准内容简报,生成社媒设计、文案与发布排期并待你逐步审批。
根据受众与汇报节奏生成清晰的项目进展与干系人更新
帮助开发者在 macOS 原生应用中集成 Zoom 会议与主持加入流程。
帮助开发者在 Linux 服务器上构建可录制、转写并接入 AI 的 Zoom 会议机器人。
帮助开发者在 Electron 桌面应用中集成 Zoom 会议、鉴权、入会与原始数据能力。
帮助开发者为 macOS 原生桌面应用构建自定义 Zoom 视频会话与设备控制能力。
帮助开发者在 Unreal 项目中集成 Zoom 会议功能并处理 C++/蓝图封装映射。
帮助开发者将 Zoom 会议能力嵌入网页应用,支持完整界面或组件化集成。