サーバーから通知を送信しようとしていますが、ドキュメントには、次のコードから実行した/ api / push /broadcast/にPOSTするように指示されています
$.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(内部サーバーエラー)が発生します。ここで提案されているように、「同一生成元ポリシー」エラーを防ぐためにコールバックを追加しました。誰かがそれを正しく行う方法を知っていますか?
ありがとう