Webhook de entrada frouxo: campo de cabeçalho de solicitação O tipo de conteúdo não é permitido por Access-Control-Allow-Headers na resposta de comprovação

Tento postar uma mensagem com folga por meio da API de busca em um 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);
};

Eu recebi a seguinte mensagem de erro:

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.

O que fazer?

questionAnswers(2)

yourAnswerToTheQuestion