zoom-oauth
$
npx mdskill add openai/plugins/zoom-oauthImplements and troubleshoots Zoom OAuth authentication flows
- Solves authentication issues for Zoom API access using OAuth
- Leverages Zoom OAuth endpoints and token management services
- Analyzes grant type, scopes, and token lifecycle to recommend solutions
- Provides step-by-step guidance for secure token handling and refresh
SKILL.md
.github/skills/zoom-oauthView on GitHub ↗
--- name: zoom-oauth description: Use when implementing OAuth. --- # Zoom OAuth Use this skill for concrete Zoom authentication implementation and troubleshooting. Prefer `setup-zoom-oauth` for the first-pass setup plan, then return here for exact flows, scope behavior, refresh handling, and error diagnosis. ## Workflow 1. Identify the app type and actor: user-level OAuth, account-level OAuth, server-to-server OAuth where officially supported, SDK JWT, or Build-platform credentials. 2. Confirm the target API, SDK, or app surface, because scopes and token audiences differ by surface. 3. Choose the grant flow: authorization code with PKCE for public clients, authorization code for confidential web apps, device authorization where appropriate, or account credentials for supported account-level automation. 4. Store refresh tokens as single-use values: persist the replacement refresh token returned by each refresh response before reusing the old one. 5. Validate requests against redirect URI, account ID, scopes, app publication state, and token expiration before changing application code. 6. For local development, keep access tokens out of logs and treat refresh tokens as single-use when rotating credentials. ## References - Full preserved guide: [references/full-guide.md](references/full-guide.md) - OAuth flows: [concepts/oauth-flows.md](concepts/oauth-flows.md) - Token lifecycle: [concepts/token-lifecycle.md](concepts/token-lifecycle.md) - Scope architecture: [concepts/scopes-architecture.md](concepts/scopes-architecture.md) - Granular scopes: [references/granular-scopes.md](references/granular-scopes.md) - OAuth errors: [references/oauth-errors.md](references/oauth-errors.md) - Redirect URI issues: [troubleshooting/redirect-uri-issues.md](troubleshooting/redirect-uri-issues.md)
More from openai/plugins
- accessibility-and-inclusive-visualizationMake data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.
- agent-browserBrowser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.
- agent-browser-verifyAutomated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass/fail before continuing.
- agents-sdkBuild AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
- ai-elementsAI Elements component library guidance — pre-built React components for AI interfaces built on shadcn/ui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.
- ai-gatewayVercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.
- ai-generation-persistenceAI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation
- ai-sdkVercel AI SDK expert guidance. Use when building AI-powered features — chat interfaces, text generation, structured output, tool calling, agents, MCP integration, streaming, embeddings, reranking, image generation, or working with any LLM provider.
- aiq-deploy|
- aiq-research|