zoom/zoom-plugin · Archived

setup-zoom-oauth

Implement Zoom authentication correctly. Use when setting up app credentials, choosing an OAuth grant, requesting scopes, handling token refresh, or debugging auth failures.

First seen May 11, 2026

Installation

$ npx skills add zoom/zoom-plugin --skill setup-zoom-oauth

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from zoom/zoom-plugin · top by installs.

npx skills add zoom/zoom-plugin

Browse all from zoom/zoom-plugin

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 5
License LICENSE
Default branch main
Open issues 2
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,479 B
  • docs SUMMARY.md 197 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

/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. Create or validate the Marketplace app and manifest through [setup-zoom-marketplace-app](../setup-zoom-marketplace-app/SKILL.md).
  3. Choose the correct grant flow.
  4. Identify minimum scopes for the user flow.
  5. Define token storage and refresh behavior.
  6. Route into the deepest relevant reference docs only after the above is clear.

Primary References

  • [oauth](../oauth/SKILL.md)
  • [setup-zoom-marketplace-app](../setup-zoom-marketplace-app/SKILL.md)
  • [general](../general/SKILL.md)
  • [rest-api](../rest-api/SKILL.md)

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