Phonegap Push iOS foreground



我正在研究Ionic应用程序,并使用phonegap推送构建推送通知。我想在应用在iOS前台时显示横幅。(我可以使用选项"forceshow"在前景显示横幅——Android)

如有任何例子或建议,将不胜感激。一个关于如何操作通知事件视图的示例)谢谢。

它适用于我与这个有效负载:

{
    "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
}

只有当你想让号码显示在你的应用图标上时才能使用徽章

相关内容

  • 没有找到相关文章

最新更新