HTTP Concepts

Idempotency

A property of HTTP methods where making the same request multiple times produces the same result as making it once. GET, PUT, DELETE, and HEAD are idempotent methods, while POST is not. This is critical for retry logic — if a network error occurs, idempotent requests can safely be retried without causing duplicate side effects.

Giao thức liên quan

Được đề cập trong hướng dẫn

Tình huống liên quan

Được định nghĩa trong

Hướng dẫn quyết định

Xem thêm