是否有任何方法可以通过Web App上的Firebase Push Notifications(FCM(http协议来获取单击的通知计数?
通知打开
您可以通过将以下内容添加到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