HTTP Cache
Learn how to take advantage of the HTTP cache to reduce bandwidth.
ETag HTTP Header
Most API endpoints implement HTTP caching.
This means most responses to GET requests contain an ETag
header that identifies the specific version of a resource. Each time the corresponding resource changes, a new ETag is generated. As such, comparing ETags indicates whether the representation of a resource has changed.
Example:
ETags are prefixed with the “W/” characters to indicate that a weak validator is used.
Conditional Requests
HTTP Request Headers can give you the ability to issue conditional requests, depending on the current version of the resource. This gives you the ability to prevent “lost update” problems.
If-Match: <etag_value> || W/"<etag_value>
: Requests only succeeds if the latest version exactly matches the given ETag value.If-None-Match: <etag_value> || W/"<etag_value>
: Request only succeeds if the latest version does not match the given Etag value.
If the condition is not met, then the server will respond with either a 304 Not Modified
or a 412 Precondition Failed
HTTP status code response (examples below).
The If-Match
HTTP Header can be used on write requests (POST, PUT, PATCH, DELETE) in order to only apply them if the resource was not changed by someone else since it was retrieved.
The If-None-Match
HTTP Header can be used on read requests (GET, HEAD) in order to only retrieve the representation of the resource if it has changed since the last time it was retrieved.
Was this page helpful?