我正在为Android和iOS开发一个cordova(3.4.0)应用程序。我正在整合城市飞艇推送通知。我正在从服务器发送推送消息和网址。在Android中,推送消息和附加功能正常,但我在iOS中收到空的额外内容。我正在关注城市飞艇的电话空白文件http://docs.urbanairship.com/build/phonegap.html
接收推送和附加功能的代码
var handleIncomingPush = function(event) {
if(event.message) {
console.log("Incoming push: " + event.message)
//alert(event.message);
} else {
console.log("No incoming message")
}
if(event.extras.url) {
console.log("URL")
window.open(event.extras.url,'_blank','location=no,closebuttoncaption=Done,toolbar=yes,toolbarposition=bottom');
}
}
Playload是
Payload: {"aliases":["alias_xssh"],"aps":{"badge":"+1","extra":{"url":"http:\/\/jhe.com\/task.php?action=daily&username=ins-mobile&date=2014-05-12"},"alert":"This is subject"}
在xcode中接收日志时
aps = {
alert = "This is subject";
badge = 16;
extra = {
url = "http://jhe.com/task.php?action=daily&username=ins-mobile&date=2014-05-12";
};
};
2014-05-13 20:00:36.072 ListCreator[974:60b] {"message":"This is subject","extras":{}}
问题出在最后一行。 extras:{} is empty
。这个相同的代码在Android中正常运行,但没有在iOS中获取额外内容。
任何建议都将受到高度赞赏。
由于
答案 0 :(得分:0)
有效负载应该是
Payload: "aps": {"alert": "This is subject", "badge": 1}, "url": "http:\/\/jhe.com\/task.php?action=daily&username=ins-mobile&date=2014-05-12"
console.log(event.extras.url);
希望这有帮助