Bearer Token - CI/CD用語集の定義
bearer token は、所持しているだけでアクセスが付与される認証情報です。サーバーは Authorization: Bearer ... にそれを含むリクエストを、アイデンティティの追加証明なしに受け入れます。そのため、bearer tokenはTLS上でのみ送信し、決してログに記録してはなりません。
関連ガイド
Access Token - CI/CD Glossary DefinitionAn access token is a short-lived credential a client presents to call an API on a user or service’s behalf, s…
API Key - CI/CD Glossary DefinitionAn API key is a static secret string identifying a calling app to a service. Simple but long-lived, it must b…
HMAC Signature - CI/CD Glossary DefinitionAn HMAC signature proves a message’s authenticity and integrity with a shared secret key - how a receiver ver…