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.

İlgili Protokoller

Kılavuzlarda Bahsedilen

İlgili Senaryolar

Tanımlandığı Yer

Karar Kılavuzları

Ayrıca Bakınız