Agent Skills
› openai/plugins
› setup-zoom-webhooks
setup-zoom-webhooks
GitHub指导如何构建 Zoom HTTP Webhook 集成。涵盖事件类型识别、端点与签名验证、幂等处理、重试机制及队列解耦,并提供调试和参考文档链接。
Trigger Scenarios
用户需要接收 Zoom 事件的 HTTP Webhook
正在配置或调试 Zoom Webhook 订阅
Install
npx skills add openai/plugins --skill setup-zoom-webhooks -g -y
SKILL.md
Frontmatter
{
"name": "setup-zoom-webhooks",
"description": "Use when building Zoom webhooks."
}
Setup Zoom Webhooks
Use this skill when the integration receives Zoom events over HTTP. If the user needs persistent low-latency event streams, compare against setup-zoom-websockets.
Workflow
- Identify the event types and resource scope before creating subscriptions.
- Implement endpoint verification and signature verification before processing business logic.
- Store raw event IDs, timestamps, and delivery metadata for replay protection and debugging.
- Make handlers idempotent because Zoom can retry delivery.
- Separate webhook ingestion from downstream API calls with a queue when reliability matters.
- Debug by checking endpoint reachability, TLS, validation token handling, signature base string, app event subscription, and account-level settings.
References
- Full preserved guide: references/full-guide.md
- Signature verification: references/signature-verification.md
- Subscriptions: references/subscriptions.md
- Events: references/events.md
- Common issues: troubleshooting/common-issues.md
Version History
- 11c74d6 Current 2026-07-19 09:55


