Phonegap推送iOS前景

时间:2016-10-25 05:12:46

标签: cordova ionic-framework push-notification apple-push-notifications phonegap-pushplugin

我正在使用Ionic应用程序并使用phonegap push构建推送通知。我想在应用程序处于iOS前台时显示横幅。 (我能够通过选项' forceshow' - Android)在前景上显示横幅

任何示例或建议都会受到赞赏。(例如,如何操纵通知事件的观点的例子)谢谢。

1 个答案:

答案 0 :(得分:0)

此有效载荷对我有用:

{
    "registration_ids":["device token"],
    "content_available": true,
    "notification" : {
        "force-start": "1",
        "content-available": "1",
        "no-cache": "1",
        "body":"Test" ,
        "title" : "Test",
        "sound" : "default" ,
        "icon":"default",
        "badge": 5
    },
    "priority":10
}

仅当您希望数字显示在应用程序图标上时才使用徽章。