Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 886 Bytes

File metadata and controls

29 lines (20 loc) · 886 Bytes

100 Continue

The server has received the request headers and the client should proceed to send the request body.

ℹ️ Details

This interim response indicates that everything so far is OK and that the client should continue the request, or ignore the response if the request is already finished.

💡 Common Use Case

Used when a client sends a request with the Expect: 100-continue header, asking the server if it can handle the request before sending a large payload.

🔧 How to Fix / Handle

Client should proceed with sending the request body.

💻 Code Example

HTTP/1.1 100 Continue

🖼️ Visual

100 Status Code Image

🔍 Technical Info

  • Code: 100
  • Category: Informational

📖 Read more on MDN


🔙 Back to List