Skip to main content
Generalopenai

zoom-oauth

Use when implementing OAuth.

Stars
1,305
Source
openai/plugins
Updated
2026-05-30
Slug
openai--plugins--oauth
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/openai/plugins/HEAD/plugins/zoom/skills/oauth/SKILL.md -o .claude/skills/oauth.md

Drops the SKILL.md into .claude/skills/oauth.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

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