When I issue a GET request, I get back a 200 OK and the etag header:
etag → "tZIZl_M15FKLVh9sN6Nj0iz1dQE/fA5Fya8Zz6DLGJwPNnIWbruyt30"
In my subsequent request, I send the
If-Not-Modified → "tZIZl_M15FKLVh9sN6Nj0iz1dQE/fA5Fya8Zz6DLGJwPNnIWbruyt30"
header, but the endpoint still sends back 200 OK rather than 304.
How do I get my endpoint to respect the If-Not-Modified header? Documentation on caching using cloud endpoints is non existent :/