HTTP

HTTP 203 Non-Authoritative Information vs 206 Partial Content

Both HTTP 203 (Non-Authoritative Information) and 206 (Partial Content) belong to the 2xx Success category. 203 indicates that the response payload has been modified by a transforming proxy from the origin server's 200 response. Meanwhile, 206 means that the server is delivering only part of the resource due to a Range header sent by the client. Used for resumable downloads and video streaming.

Deskripsi

The response payload has been modified by a transforming proxy from the origin server's 200 response.

Ketika Anda Melihatnya

When a proxy or CDN modifies the response body (e.g., adds headers, transforms content).

Cara Memperbaiki

Check if a proxy is modifying the response. Access the origin directly if you need the original content.

Deskripsi

The server is delivering only part of the resource due to a Range header sent by the client. Used for resumable downloads and video streaming.

Ketika Anda Melihatnya

During video streaming, large file downloads, or when resuming interrupted downloads.

Cara Memperbaiki

No fix needed. This is normal behavior for range requests.

Perbedaan Utama

1.

HTTP 203: The response payload has been modified by a transforming proxy from the origin server's 200 response.

2.

HTTP 206: The server is delivering only part of the resource due to a Range header sent by the client. Used for resumable downloads and video streaming.

3.

You encounter 203 when when a proxy or CDN modifies the response body (e.g., adds headers, transforms content).

4.

You encounter 206 when during video streaming, large file downloads, or when resuming interrupted downloads.

Kapan Menggunakan Yang Mana

For 203 (Non-Authoritative Information): Check if a proxy is modifying the response. Access the origin directly if you need the original content. For 206 (Partial Content): No fix needed. This is normal behavior for range requests.

Pelajari Lebih Lanjut