I have just written a small app to handle push notifications via FCM (both client & server API).

Also, I have used Google Cloud BigQuery to have more detailed logs about how I'm handling push notification flow and how FCM behaves with each message sent by my app.

According to BigQuery data export guide, I have enabled BigQuery in my FCM console and completed all the necessary steps.

As you already know, you need to handle push notifications in both foreground (using your SDK) and background (using Service Worker API).

I'm using:

I'm sending notifications as Data message.

Here is my Service Worker script:

import { initializeApp } from "https://www.gstatic.com/firebasejs/9.8.4/firebase-app.js";
import {
  getMessaging,
  onBackgroundMessage,
  experimentalSetDeliveryMetricsExportedToBigQueryEnabled as _firebaseExperimentalSetDeliveryMetricsExportedToBigQueryEnabled,
} from "https://www.gstatic.com/firebasejs/9.8.4/firebase-messaging-sw.js";

(function (self, initializeData) {
  const app = initializeApp({ ...initializeData.MyFirebaseCredentials });

  self.addEventListener("install", (event) => {
    self.skipWaiting();
  });

  self.addEventListener("notificationclick", (event) => {
    // open the notification
  });

  messaging = getMessaging(app);
  onBackgroundMessage(messaging, (payload) => {
    // ...
    self.registration.showNotification(notificationTitle, notificationOptions);
  });

  const experimentalSetDeliveryMetricsExportedToBigQueryEnabled = async (
    messaging,
    enable
  ) => {
    console.log(
      "Big Query - SetDeliveryMetricsExportedToBigQueryEnabled",
      "Setting delivery metrics exported to bigQuery..."
    );

    const bqFn = async (msg, en) => {
      return _firebaseExperimentalSetDeliveryMetricsExportedToBigQueryEnabled(
        msg,
        en
      );
    };

    return bqFn(messaging, enable)
      .then(() =>
        console.log("Big Query- SetDeliveryMetricsExportedToBigQueryEnabled", "Enabled")
      )
      .catch((err) =>
        console.error(
          "Big Query",
          "Unable to SetDeliveryMetricsExportedToBigQueryEnabled",
          { err }
        )
      );
  };
  experimentalSetDeliveryMetricsExportedToBigQueryEnabled(messaging, true);
})(self, { ...Config });

Also I have enabled BQ in my foreground SDK using my experimentalSetDeliveryMetricsExportedToBigQueryEnabled() function.

The issue is that I'm only receiving the MESSAGE_ACCEPTED event in my BigQuery dashboard, and there is no way to track which messages have been delivered completely (MESSAGE_DELIVERED event), as the documentation says. I also haven't found any proper solution related to this.

Can anybody help me resolve this issue?

0

There are 0 best solutions below