Webhook entrante flojo: campo de encabezado de solicitud El tipo de contenido no está permitido por Access-Control-Allow-Headers en la respuesta previa al vuelo
Intento publicar un mensaje flojo a través de la API de recuperación en un navegador:
fetch('https://hooks.slack.com/services/xxx/xxx/xx', {
method: 'post',
headers: {
'Accept': 'application/json, text/plain, */*',
'Content-type': 'application/json'
},
body: JSON.stringify({text: 'Hi there'})
})
.then(response => console.log)
.catch(error => console.error);
};
Me sale el siguiente mensaje de error:
Fetch API cannot load:
https://hooks.slack.com/services/xxxxxxx/xxxxx.
Request header field Content-type is not allowed by Access-Control-Allow-Headers in preflight response.
¿Qué hacer?