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.

相关协议

在指南中提及

相关场景

定义来源

决策指南

另请参阅