Я хочу отправить push-уведомление с моего сервера Parse (облачный код) с помощью pushwoosh Remote API. Я пытаюсь следовать их Guidelines Here, но не могу, но я получаю 400 код ошибки в ответ на запрос, что означает, что моя строка запроса неверна.Вызов Pushwoosh Remote API из кода облачного секса
400 | N/A | Искаженная строка запроса (от status codes here)
Parse.Cloud.afterSave("LinkPost", function(request, response) {
Parse.Cloud.httpRequest({
method: 'POST',
url: 'https://cp.pushwoosh.com/json/1.3/createMessage',
data: JSON.stringify({
"request": {
"application": "APPLICATION_ID",
"auth": "AUTH_TOKEN",
"notifications": [{
"send_date": "now",
"ignore_user_timezone": true,
"content": "Hello world!"
}]
}
}),
dataType: 'json'
}).then(function(httpResponse) {
console.log(httpResponse.text);
}, function(httpResponse) {
console.error('Request failed with response code ' + httpResponse.status);
});
});