一切都很好,然后我收到以下错误:
ionic.bundle.js:18463选项https://push.ionic.io/api/v1/push net :: ERR_NAME_NOT_RESOLVED
我似乎无法使用以下内容发送:
// Encode your key
var auth = btoa(privateKey + ':');
// Build the request object
var req = {
method: 'POST',
url: 'https://push.ionic.io/api/v1/push',
headers: {
'Content-Type': 'application/json',
'X-Ionic-Application-Id': appId,
'Authorization': 'basic ' + auth
},
data: {
"tokens": devices,
"notification": {
"alert": message,
"ios":{
"priority": 10,
"badge": 1,
"payload": {"path": path}
}
}
}
};
// Make the API call
$http(req).success(function(resp){
// Handle success
console.log("Ionic Push: Push success!");
}).error(function(error){
// Handle error
console.log("Ionic Push: Push error...");
});
一切都停止了工作 - 以前工作得非常好。
感谢您的帮助
答案 0 :(得分:0)
我认为他们已经改变了URL和格式。
新网址为https://api.ionic.io/push/notifications
有效负载
{ “令牌”:[“device_token_1”,“device_token_2”], “个人资料”:“prod”, “通知”:{ “标题”:“信息标题”, “消息”:“Ur消息!” } }