嘿伙计们试图用推送信息发送到我的手机 pushover libary(pushover.net)。
实际上我失败的速度实际上我得到了400 Bad request错误 来自jquery AJAX的电话。
这是我的代码,怎么回事?
$.ajax({
type: "POST",
url: "https://api.pushover.net/1/messages.json",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: {
"title": title,
"message": message,
"token": CONFIG.API,
"device": CONFIG.DEVICE,
"user": CONFIG.USER,
},
complete: function(data) {
console.log("push sent!");
console.log(data);
}
});
错误: POST https://api.pushover.net/1/messages.json 400(错误请求)