Get Bucket CORS
Retrieves the bucket Cross-Origin Resource Sharing (CORS) configuration. The user must be the bucket owner or to have been granted s3:GetBucketCORS permission on the bucket.
GET /?cors HTTP/1.1
Host: {bucket}.{region}.cdn77-storage.com
Response Entries
Name | Description |
---|---|
CORSConfigurationnone | A container for the response. |
CORSRulenone | A container for the CORS information |
AllowedHeaderstring | Headers that are specified in the Access-Control-Request-Headers header |
AllowedMethodstring | An HTTP method that you allow the origin. GET, PUT, HEAD, POST, and DELETE |
AllowedOriginstring | One or more origins you want customers to be able to access the bucket from. |
Example Response
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>http://example.com</AllowedOrigin>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
</CORSRule>
</CORSConfiguration>
Updated on 10th September, 2024