CORS - Json The CORS configuration must be written in valid JSON. API response Expected params.CORSConfiguration.CORSRules to be an Array

0

Does anyone know why I am getting this error? Thanks a lot

gefragt vor 2 Monaten142 Aufrufe
2 Antworten
1

Hi,

Please use this link as a reference https://docs.aws.amazon.com/AmazonS3/latest/userguide/ManageCorsUsing.html

[
    {
        "AllowedHeaders": [
            "Content-Type", 
            "Authorization"
        ],
        "AllowedMethods": [
            "PUT",
            "POST",
            "GET"
        ],
        "AllowedOrigins": [
            "http://www.example.com"
        ],
        "ExposeHeaders": [
           "x-custom-header"
        ],
        "MaxAgeSeconds": 3000
    }
]
profile picture
EXPERTE
beantwortet vor 2 Monaten
0

try using this template:

{
  "CORSConfiguration": {
    "CORSRules": [
      {
        "AllowedOrigins": ["http://example.com"],
        "AllowedMethods": ["GET", "POST", "PUT"],
        "AllowedHeaders": ["Content-Type", "Authorization"],
        "MaxAgeSeconds": 3000,
        "ExposeHeaders": ["x-custom-header"]
      }
    ]
  }
}

If this has answered your question or was helpful, accepting the answer would be greatly appreciated. Thank you!

profile picture
EXPERTE
beantwortet vor 2 Monaten
  • Thanks a lot for taking the time to respond. Still getting this error: The CORS configuration must be written in valid JSON. API response Expected params.CORSConfiguration.CORSRules to be an Array

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen