>_FoxiRef
1xx Informational responses

100Continue

Client should continue with request

#When does this occur?

Returned when the server signals it is ready to receive the request body after the client sends an Expect: 100-continue header before sending a large request body.

#How to handle?

The client should continue sending the request body. Most HTTP libraries handle this automatically.

#Example

HTTP Response
HTTP/1.1 100 Continue
Content-Type: application/json
Date: Thu, 09 Apr 2026 18:24:25 GMT

{
  "status": 100,
  "message": "Continue"
}

#Related Status Codes

이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.