<< All versions
Skill v1.0.0
Trusted Publisher100/100openai/plugins/oauth
──Details
PublishedMay 19, 2026 at 10:25 PM
Content Hashsha256:fc41a9631f47e59c...
Git SHA
──Files
Files (1 file, 1.8 KB)
SKILL.md1.8 KBactive
SKILL.md · 29 lines · 1.8 KB
version: "1.0.0" 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
- 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.
- Confirm the target API, SDK, or app surface, because scopes and token audiences differ by surface.
- 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.
- Store refresh tokens as single-use values: persist the replacement refresh token returned by each refresh response before reusing the old one.
- Validate requests against redirect URI, account ID, scopes, app publication state, and token expiration before changing application code.
- 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
- OAuth flows: concepts/oauth-flows.md
- Token lifecycle: concepts/token-lifecycle.md
- Scope architecture: concepts/scopes-architecture.md
- Granular scopes: references/granular-scopes.md
- OAuth errors: references/oauth-errors.md
- Redirect URI issues: troubleshooting/redirect-uri-issues.md