Callback URL - CI/CD用語集の定義
Callback URL: callback URLとは、イベントが完了したときにサービスがあなたを呼び戻せるように登録するエンドポイントで、例えばwebhookの宛先やOAuthのredirect先です。
callback URLとは、イベントが完了したときにサービスがあなたを呼び戻せるように登録するエンドポイントで、例えばwebhookの宛先やOAuthのredirect先です。
callback URLはあなたのreceiverのアドレスです。送信側から到達可能でなければならず、そのためfirewallの背後にあるreceiverはトンネルや公開ゲートウェイを必要とします。
CIにおいて
webhookを設定するとき、あなたはCIシステムのcallback URLを貼り付けます。そのURLが公開されていて到達可能でなければ、配信は失敗し、イベントは送信側のretryキューに静かに溜まっていきます。
関連ガイド
Webhook - CI/CD Glossary DefinitionWebhook: A webhook is an HTTP callback that a service sends to a URL you register whenever an event happens,…
Reverse Proxy - CI/CD Glossary DefinitionReverse Proxy: A reverse proxy sits in front of one or more servers and forwards client requests to them, oft…
Long Polling - CI/CD Glossary DefinitionLong Polling: Long polling is a technique where the client sends a request that the server holds open until a…