Skip to main content
Generalopenai

setup-zoom-oauth

Use when setting up OAuth.

Stars
1,305
Source
openai/plugins
Updated
2026-05-30
Slug
openai--plugins--setup-zoom-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/setup-zoom-oauth/SKILL.md -o .claude/skills/setup-zoom-oauth.md

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

/setup-zoom-oauth

Use this skill when auth is the blocker or when auth choices will shape the entire integration.

Scope

  • App type selection
  • OAuth grant selection
  • Scope planning
  • Token exchange and refresh
  • Auth debugging and environment assumptions

Workflow

  1. Determine the app model and who is authorizing whom.
  2. Choose the correct grant flow.
  3. Identify minimum scopes for the user flow.
  4. Define token storage and refresh behavior.
  5. Route into the deepest relevant reference docs only after the above is clear.

Primary References

Common Mistakes

  • Picking a grant before clarifying the actor and tenant model
  • Asking for broad scopes before confirming the exact workflow
  • Forgetting refresh-token behavior and token lifecycle handling
  • Reusing an old refresh token after a successful refresh instead of storing the newly returned one
  • Treating auth failures as API failures without checking app configuration first