Your Amazon S3 CORS XML configuration file seems to be incorrect. Make sure you add the <ExposeHeader>ETag</ExposeHeader> to the <CORSRule> section as described below.
<?xml version="1.0" encoding="UTF-8"?> <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> <CORSRule> <AllowedOrigin>*</AllowedOrigin> <AllowedMethod>POST</AllowedMethod> <AllowedMethod>PUT</AllowedMethod> <AllowedMethod>DELETE</AllowedMethod> <MaxAgeSeconds>3000</MaxAgeSeconds> <ExposeHeader>ETag</ExposeHeader> <AllowedHeader>*</AllowedHeader> </CORSRule> </CORSConfiguration>
For more information, see the documentation on Amazon S3 servers and the official blog post on the same site .
source share