Skip to content

Commit

Permalink
[ko] HTTP 413, 422 응답 코드 이름 및 본문 수정 (#16599)
Browse files Browse the repository at this point in the history
* 422 응답 코드 이름 수정

* 413 상태 코드 이름 수정

* Update index.md

* Update index.md

* 413 3차 수정

* 413.md: 제안 반영 및 오타 수정
  • Loading branch information
gkswngh05 authored Oct 28, 2023
1 parent cbcbd24 commit 808d3f4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
22 changes: 13 additions & 9 deletions files/ko/web/http/status/413/index.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
---
title: 413 Payload Too Large
title: 413 Content Too Large
slug: Web/HTTP/Status/413
l10n:
sourceCommit: 0880a90f3811475d78bc4b2c344eb4146f25f66c
---

{{HTTPSidebar}}HTTP 413 Payload Too Large 응답 상태 코드는 요청 엔터티가 서버에 의해 정의된 제한보다 크다는 것을 나타낸다. 서버가 연결을 닫거나 헤더 필드({{HTTPHeader("Retry-After")}})를 반환할 수 있다.
{{HTTPSidebar}}

HTTP **`413 Content Too Large`** 응답 상태 코드는 요청 엔터티가 서버에 의해 정의된 제한보다 크다는 것을 나타냅니다. 서버는 연결을 닫거나 {{HTTPHeader("Retry-After")}} 헤더 필드를 반환할 수 있습니다.

RFC 9110 이전에는 이 상태 코드 이름이 **`Payload Too Large`** 였습니다. 이 이름은 아직도 널리 사용되고 있습니다.

## 상태

```
413 Payload Too Large
```http
413 Content Too Large
```

## 정의
## 명세서

| 정의 | 제목 |
| --------------------------------------------------- | ------------------------------------------------------------- |
| {{RFC("7231", "413 Payload Too Large" , "6.5.11")}} | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
{{Specifications}}

## 참조
## 같이 보기

- {{HTTPHeader("Connection")}}
- {{HTTPHeader("Retry-After")}}
12 changes: 7 additions & 5 deletions files/ko/web/http/status/422/index.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
---
title: 422 Unprocessable Entity
title: 422 Unprocessable Content
slug: Web/HTTP/Status/422
l10n:
sourceCommit: 0880a90f3811475d78bc4b2c344eb4146f25f66c
---

{{HTTPSidebar}}

이 응답은 서버가 요청을 이해하고 요청 문법도 올바르지만 요청된 지시를 따를 수 없음을 나타냅니다.
하이퍼텍스트 전송 프로토콜(HTTP) **`422 Unprocessable Content`** 응답 상태 코드는 서버가 요청 엔티티의 컨텐츠 형식을 이해했고 요청 엔티티의 문법도 올바르지만 요청된 지시를 처리할 수 없음을 나타냅니다.

> **경고:** **중요**: 클라이언트는 요청을 수정하지 않고 동일한 형태로 다시 보내서는 안됩니다.
> **경고:** 클라이언트는 요청을 수정하지 않고 동일한 형태로 다시 보내서는 안됩니다.
## 상태

```
422 Unprocessable Entity
```http
422 Unprocessable Content
```

## 명세서
Expand Down

0 comments on commit 808d3f4

Please sign in to comment.