Firebase推送通知通过HTTP协议发送单击事件分析



是否有任何方法可以通过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

相关内容

  • 没有找到相关文章

最新更新