You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Etag, as well known as Entity Tag, is an HTTP header corresponding to the current status of a requested resource.
When an API receives a request, it will calculate a hash value. This value is the ETag.
Consumers can send the ETag value on the header If-None-Match. The API server will process the request and calculate the ETag again, comparing it with the value sent by the client. If it matches, the API server will response the status code 304 Not Modified. The client will then update the cache as it knows the response is still valid.
The Etag, as well known as Entity Tag, is an HTTP header corresponding to the current status of a requested resource.
When an API receives a request, it will calculate a hash value. This value is the ETag.
Consumers can send the ETag value on the header If-None-Match. The API server will process the request and calculate the ETag again, comparing it with the value sent by the client. If it matches, the API server will response the status code 304 Not Modified. The client will then update the cache as it knows the response is still valid.
Credit goes to @ivan1405
The text was updated successfully, but these errors were encountered: