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.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o setup-zoom-oauth.zip https://jpskill.com/download/22705.zip && unzip -o setup-zoom-oauth.zip && rm setup-zoom-oauth.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22705.zip -OutFile "$d\setup-zoom-oauth.zip"; Expand-Archive "$d\setup-zoom-oauth.zip" -DestinationPath $d -Force; ri "$d\setup-zoom-oauth.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
setup-zoom-oauth.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
setup-zoom-oauthフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[Skill 名] setup-zoom-oauth
/setup-zoom-oauth
このスキルは、認証がブロックになっている場合や、認証の選択が統合全体を形作る場合に利用します。
範囲
- アプリケーションタイプの選択
- OAuth グラントの選択
- スコープの計画
- トークンの交換と更新
- 認証のデバッグと環境の前提条件
ワークフロー
- アプリケーションモデルと、誰が誰を認証するのかを決定します。
- 正しいグラントフローを選択します。
- ユーザーフローに必要な最小限のスコープを特定します。
- トークンの保存と更新の動作を定義します。
- 上記が明確になった後でのみ、最も関連性の高いリファレンスドキュメントに誘導します。
主要なリファレンス
よくある間違い
- アクターとテナントモデルを明確にする前にグラントを選択する
- 正確なワークフローを確認する前に広範なスコープを要求する
- refresh-token の動作とトークンのライフサイクル処理を忘れる
- 正常な更新後に古いリフレッシュトークンを再利用し、新しく返されたトークンを保存しない
- アプリケーション設定を最初に確認せずに、認証の失敗を API の失敗として扱う
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
/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
- Determine the app model and who is authorizing whom.
- Choose the correct grant flow.
- Identify minimum scopes for the user flow.
- Define token storage and refresh behavior.
- 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