Firebase 推送通知通过 http 协议发送点击事件分析
Posted
技术标签:
【中文标题】Firebase 推送通知通过 http 协议发送点击事件分析【英文标题】:Firebase Push Notification send through http protocols click event analytics 【发布时间】:2018-02-13 17:46:38 【问题描述】:有没有什么方法可以获取通过 web 应用程序通过 firebase 推送通知 (fcm) HTTP 协议发送的点击通知的计数?
【问题讨论】:
【参考方案1】:通知打开
您可以通过将以下内容添加到您的 firebase-messaging.js 文件中来监听数据负载的通知点击:
self.addEventListener('notificationclick', function(event)
event.notification.close();
// Do something as the result of the notification click
);
通知关闭
您可以通过以下方式监听通知关闭事件:
self.addEventListener('notificationclose', function(event)
// Do something as the result of the notification close
);
参考:notificationclick
【讨论】:
我知道..我要求我必须知道点击通过此添加事件侦听器发送的通知的用户数。以上是关于Firebase 推送通知通过 http 协议发送点击事件分析的主要内容,如果未能解决你的问题,请参考以下文章
Firebase 通过 curl 命令发送推送通知有效,但不是来自 firebase 控制台
如何通过 Firebase 云消息发送推送通知(快速入门)?
通过 Firebase 函数发送的 Swift 中的加密推送通知