Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko] HTTP 413, 422 응답 코드 이름 및 본문 수정 #16599

Merged
merged 6 commits into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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