IFTTT Access-Control-Allow-Origin - PullRequest
       17

IFTTT Access-Control-Allow-Origin

0 голосов
/ 29 апреля 2018

Я пытаюсь создать 'POST' запрос к сервису IFTTT webhook.
Использование:

function deleteRow(ID){
    $.ajax({
    type: 'POST',
    url: 'https://maker.ifttt.com/trigger/delete_row/with/key/{key}',
    data: '{"value":"'+ID+'"}',
    contentType: "application/json",
    dataType: 'json'
});
}

Ответ:

Failed to load https://maker.ifttt.com/trigger/delete_row/with/key/{key}: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin '{mysite}' is therefore not allowed access.

Что не так с моим запросом?

...