HTTP

HTTP 226 IM Used vs 426 Upgrade Required

HTTP 226 (IM Used) is a 2xx Success response, while 426 (Upgrade Required) is a 4xx Client Error response. 226 indicates that the server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations. In contrast, 426 means that the server refuses to perform the request using the current protocol but might after the client upgrades to a different protocol.

Description

The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations.

When You See It

When using delta encoding to reduce bandwidth.

How to Fix

Rarely encountered. The response uses Instance Manipulations (IM) as specified.

Description

The server refuses to perform the request using the current protocol but might after the client upgrades to a different protocol.

When You See It

When a server requires HTTPS or a newer protocol version.

How to Fix

Switch to the protocol specified in the Upgrade response header.

Key Differences

1.

226 is a 2xx Success response, while 426 is a 4xx Client Error response.

2.

HTTP 226: The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations.

3.

HTTP 426: The server refuses to perform the request using the current protocol but might after the client upgrades to a different protocol.

4.

You encounter 226 when when using delta encoding to reduce bandwidth.

5.

You encounter 426 when when a server requires HTTPS or a newer protocol version.

When to Use Which

For 226 (IM Used): Rarely encountered. The response uses Instance Manipulations (IM) as specified. For 426 (Upgrade Required): Switch to the protocol specified in the Upgrade response header.

Learn More