CORS: ```json [ { "AllowedOrigins": [ "https://example.com", ], "AllowedMethods"

CORS:
[
  {
    "AllowedOrigins": [
      "https://example.com",
    ],
    "AllowedMethods": [
      "GET",
      "PUT",
      "POST",
      "DELETE",
      "HEAD"
    ],
    "AllowedHeaders": [
      "*"
    ],
    "ExposeHeaders": [
      "ETag"
    ]
  }
]
Was this page helpful?