I am setting object with public-read-write
ACL with following code:
o = s3.Object(bucket, key)
o.Acl().put(ACL='public-read-write')
I can now access object on https://hostname/tenant:bucket/key
publicly.
I can get ETAG with anonymous user if I do full request (meaning it downloads the file).
Is it possible for anonymous user to get object metadata (etag) without doing full download of the file?
Is it possible to get metadata (ETAG) without
Maybe use "head_object" if you are using boto to get metadata of the key.