aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/status/431/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/http/status/431/index.html')
-rw-r--r--files/ja/web/http/status/431/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/files/ja/web/http/status/431/index.html b/files/ja/web/http/status/431/index.html
new file mode 100644
index 0000000000..e24f1f2509
--- /dev/null
+++ b/files/ja/web/http/status/431/index.html
@@ -0,0 +1,51 @@
+---
+title: 431 Request Header Fields Too Large
+slug: Web/HTTP/Status/431
+tags:
+ - HTTP
+ - HTTP ステータスコード
+ - Reference
+ - クライアントエラー
+ - ステータスコード
+translation_of: Web/HTTP/Status/431
+---
+<div>{{HTTPSidebar}}</div>
+
+<p><span class="seoSummary">HTTP の <code><strong>431 Request Header Fields Too Large</strong></code> レスポンスステータスコードは、リクエストの <a href="/ja/docs/Web/HTTP/Headers">HTTP ヘッダー</a>が長すぎるためにサーバーがリクエストの処理を拒否したことを示します。</span>ヘッダーフィールドを縮小した上で、リクエストを再送信する<em>ことができます</em>。</p>
+
+<p>431 はリクエストヘッダーの<strong>全体の大きさ</strong>が大きすぎる場合や、<strong>単一の</strong>ヘッダーフィールドが長すぎる場合に使用することができます。このエラーが発生した場合は、レスポンス本文でこの二つの問題のどちらであるかを示すと役立ちます。 — できれば、どのヘッダーが長すぎるのかも含めたほうがよいでしょう。これによってユーザーが、クッキーを消去するなど、問題の解決を試みることができます。</p>
+
+<p>サーバーは次のような場合に、よくこのステータスを生成します。</p>
+
+<ul>
+ <li>{{ httpheader("Referer") }} の URL が長すぎる場合</li>
+ <li>そのリクエストで送られた <a href="/ja/docs/Web/HTTP/Cookies">Cookie</a> が多すぎる場合</li>
+</ul>
+
+<h2 id="Status" name="Status">ステータス</h2>
+
+<pre class="syntaxbox">431 Request Header Fields Too Large</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">題名</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{RFC("6585", "431 Request Header Fields Too Large" , "5")}}</td>
+ <td>Additional HTTP Status Codes</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{HTTPStatus(414, "414 URI Too Long")}}</li>
+ <li>{{Glossary("Request header")}}</li>
+</ul>