我正在尝试从服务器发送通知,文档说要 POST 到 /api/push/broadcast/ 我从以下代码完成
$.ajax({
type: 'POST',
dataType: 'json',
url: 'https://go.urbanairship.com/api/push/?callback=?',
data: '{"android": {"alert": "hi"}}',
contentType: "application/json",
username:"P4...UBg",
password:"fg...gDA",
error: function(jqXHR, textStatus, errorThrown){
// log the error to the console
alert(
"The following error occured: "+
textStatus, errorThrown
);
},
});
我收到 500(内部服务器错误)。我添加了回调以防止此处建议的“同源策略”错误。有谁知道如何正确地做到这一点?
谢谢