cors-troubleshooting
Troubleshooting CORS Issues
If you encounter unexpected behavior while accessing buckets set with the CORS configuration, try the following steps to troubleshoot:
Verify that the CORS configuration is set on the bucket.
For instructions, see Editing Bucket Permissions in the Amazon Simple Storage Service Console User Guide. If the CORS configuration is set, the console displays an Edit CORS Configuration link in the Permissions section of the Properties bucket.
Capture the complete request and response using a tool of your choice. For each request Amazon S3 receives, there must be a CORS rule that matches the data in your request, as follows:
Verify that the request has the Origin header.
If the header is missing, Amazon S3 doesn't treat the request as a cross-origin request, and doesn't send CORS response headers in the response.
Verify that the Origin header in your request matches at least one of the
AllowedOriginelements in the specifiedCORSRule.The scheme, the host, and the port values in the Origin request header must match the
AllowedOriginelements in theCORSRule. For example, if you set theCORSRuleto allow the originhttp://www.example.com, then bothhttps://www.example.comandhttp://www.example.com:80origins in your request don't match the allowed origin in your configuration.Verify that the method in your request (or in a preflight request, the method specified in the
Access-Control-Request-Method) is one of theAllowedMethodelements in the sameCORSRule.For a preflight request, if the request includes an
Access-Control-Request-Headersheader, verify that theCORSRuleincludes theAllowedHeaderentries for each value in theAccess-Control-Request-Headersheader.