blob: 5b7fb103cbc79a8df9ca0529cfb263ca9d3891b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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>
|