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

preguntada hace 2 meses142 visualizaciones
2 Respuestas
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
EXPERTO
respondido hace 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
EXPERTO
respondido hace 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

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas