mw_etag {webfakes} | R Documentation |
Etag
header to the responseThis middleware handles the If-None-Match
headers, and it sets the
status code of the response to 304 if If-None-Match
matches the
Etag
. It also removes the response body in this case.
mw_etag(algorithm = "crc32")
algorithm |
Checksum algorithm to use. Only |
Handler function.
Other middleware:
mw_json()
,
mw_log()
,
mw_multipart()
,
mw_raw()
,
mw_static()
,
mw_text()
,
mw_urlencoded()
app <- new_app()
app$use(mw_etag())
app