開発者が REST API 経由でデータを取得しようとしています。API サーバーは HTTP クライアント エラー応答コードで応答します。応答を調査した後、開発者は応答に Retry-After ヘッダーがあることに気付きました。このエラーの根本的な原因は何ですか?
正解:B
The HTTP client error response code accompanied by a Retry-After header typically indicates that the client has sent too many requests in a given amount of time, leading to rate limiting by the server. This is often indicated by a 429 Too Many Requests status code. The Retry-After header informs the client how long it should wait before making another request. References: * Cisco DevNet Associate Study Guide: REST API Error Handling (Chapter 7, Section: Understanding HTTP Status Codes).