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

feita há 3 meses142 visualizações
2 Respostas
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
ESPECIALISTA
respondido há 2 meses
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
ESPECIALISTA
respondido há 2 meses
  • 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

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas