diff options
Diffstat (limited to 'files/ko/web/http/status/431/index.html')
-rw-r--r-- | files/ko/web/http/status/431/index.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/files/ko/web/http/status/431/index.html b/files/ko/web/http/status/431/index.html new file mode 100644 index 0000000000..5b7fb103cb --- /dev/null +++ b/files/ko/web/http/status/431/index.html @@ -0,0 +1,45 @@ +--- +title: 431 Request Header Fields Too Large +slug: Web/HTTP/Status/431 +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="/en-US/docs/Web/HTTP/Headers">HTTP 헤더</a>의 크기가 너무 크기 때문에 처리가 불가능함을 알려준다. 요청 헤더의 크기를 줄인 후, 재요청을 할 수 있다.</span></p> + +<p>431는 헤더 전체의 크기가 너무 크거나, 단일 헤더 필드가 너무 클 경우에 사용된다. 이 에러를 받는 유저를 위해 응답 body에 둘 중에 어느 경우인지 명시해줄 수 있다 — 이상적으로, 어느 헤더가 처리 불가능한지 알려주면 좋다. 그러면 쿠키를 삭제하는 것과 같이 유저가 문제를 해결할 수 있도록 도와준다.</p> + +<p>서버가 431 상태 코드를 전송할 경우:</p> + +<ul> + <li>{{ httpheader("Referer") }} URL이 너무 긴 경우</li> + <li>요청에 많은 양의 <a href="/en-US/docs/Web/HTTP/Cookies">Cookies</a> 포함된 경우</li> +</ul> + +<h2 id="Status">Status</h2> + +<pre class="syntaxbox notranslate">431 Request Header Fields Too Large</pre> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Title</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">See also</h2> + +<ul> + <li>{{HTTPStatus(414, "414 URI Too Long")}}</li> + <li>{{Glossary("Request header")}}</li> +</ul> |