OAuth Flow - CI/CD用語集の定義
OAuth flow は、クライアントが access token を取得するために従う標準化された OAuth 2.0 のシーケンスです。
OAuth flow は、authorization code や client credentials など、access token を取得するための標準化された OAuth 2.0 のシーケンスの 1 つです。CI テストスイートは通常、マシン間認証に client credentials フローを使用します。
フローごとに適したクライアントが異なります。ユーザー向けには authorization code、サービス向けには client credentials です。pipeline は通常、人の操作なしで token を取得するために client credentials を使用します。
関連ガイド
Access Token - CI/CD Glossary DefinitionAccess Token: An access token is a short-lived credential that authorizes a client to call protected API endp…
Bearer Token - CI/CD Glossary DefinitionBearer Token: A bearer token is a credential sent in the HTTP `Authorization: Bearer <token>` header; whoever…
JWT - CI/CD Glossary DefinitionJWT: A JWT (JSON Web Token) is a signed, base64url-encoded token carrying claims about a subject, verifiable…