我正在使用Firebase Push通知它工作正常,但我有一个问题,如果,
我需要能够为Firebase推送提供参数 消息系统,它将允许我显示一条消息,何时 单击,转到指定的Web链接 - 在Web视图中。最 重要的是,当用户没有时,这需要起作用 app app。
有可能吗?我浏览了firebase的文档,但没有得到任何关于它的信息。
答案 0 :(得分:3)
要在用户可能没有运行应用时向用户发送通知,请使用Firebase Cloud Messaging。
要在用户未安装应用时向用户发送消息,请使用Firebase Dynamic Links或Invites。
答案 1 :(得分:0)
您可能需要在推送通知下尝试“高级选项”,方法是发送键值对,如下所示(link
是参数,并在firebase console
中设置此参数值):
window.FirebasePlugin.onNotificationOpen ((notification) {
if notification.link != '' && notification.tap == true
ref = cordova.InAppBrowser.open(notification.link, '_blank', 'location=yes')
window.open = cordova.InAppBrowser.open
}