--- title: Expect slug: Web/HTTP/Headers/Expect translation_of: Web/HTTP/Headers/Expect ---
{{HTTPSidebar}}

Expect HTTP 요청 헤더는 요청을 적절하게 처리하기 위해 서버가 반환할 기대값을 나타냅니다.

명세에 정의된 유일한 기대값인 Expect: 100-continue에 대해, 서버는 다음과 같이 응답합니다:

 

 

예를들어, 요청의 {{HTTPHeader("Content-Length")}} 값이 너무 크다면 서버는 이를 거절할 수도 있습니다.

일반적인 브라우저는 Expect 헤더를 전송하지 않지만, cURL과 같은 몇가지 클라이언트들은 전송하는 것이 기본값입니다.

Header type {{Glossary("Request header")}}
{{Glossary("Forbidden header name")}} no

Syntax

현재는 "100-continue" 를 제외하고 어떤 기대값도 정의되어있지 않습니다.

Expect: 100-continue

Directives

100-continue
Informs recipients that the client is about to send a (presumably large) message body in this request and wishes to receive a {{HTTPStatus("100")}} (Continue) interim response.

Examples

Large message body

클라이언트는 Expect 헤더가 포함된 요청을 전송하고 메시지 바디를 전송하기 이전에 서버의 응답을 기다립니다.

PUT /somewhere/fun HTTP/1.1
Host: origin.example.com
Content-Type: video/h264
Content-Length: 1234567890987
Expect: 100-continue

이제 서버는 요청 헤더를 확인하고 {HTTPStatus("100")}} (Continue) 상태를 응답하여 클라이언트가 계속해서 메시지 바디를 전송하도록 안내하거나, {{HTTPStatus("417")}} (Expectation Failed) 상태를 응답하여 어떠한 기대값도 충족되지 않도록 합니다.

Specifications

Specification Title
{{RFC("7231", "Expect", "5.1.1")}} Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content

Browser compatibility

No common browsers are known to send this header.

See also