0
我試圖從服務器發送通知和docs說,張貼到/ API /推/廣播/我從下面的代碼如何使用UrbanAirship從服務器發送通知?
$.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(內部服務器錯誤)。我添加了回調以防止與建議here「相同的來源策略」錯誤。有人知道如何正確地做到這一點嗎?
感謝
我使用Windows Azure作爲我的服務器,不幸的是我需要通過JavaScript發送它 – user972616