如何为推送通知添加分析

How to add analytics for Push notifications

我正在开发渐进式网络应用程序,我想为推送通知实施分析。

如何为推送通知添加分析,以便我能够跟踪和记录有多少人点击了通知以及有多少人没有点击就关闭了通知。

我在 WordPress web-push plugin, is to add a query argument to the URLs opened via notifications (see this code) 中使用的一个选项。这样,您就可以知道人们点击了多少次通知。

关于关闭通知的人数,很遗憾无法得知。有一个 notificationclose event,但它只会在持续通知时触发。

Pushpad 处,通知 url 是一个 重定向页面 ,它跟踪打开然后重定向到目标 url。

例如,如果目标 url 是 http://example.com/target,您点击时打开的通知 url 应该是 http://example.com/redirect?url=/target

目前无法跟踪通知何时被关闭。

更新(2016 年 6 月):其他人指出在规范中有一个 notificationclose event。但是我还没有测试浏览器支持(例如,目前这个事件没有在 MDN 上列出)。除此之外,我担心当用户单击通知时也会触发此事件(因为通知已关闭)-规范对此尚不清楚。

我已经编写了一小段代码来使用 Google analytics 进行分析,并且运行良好。

在这里转储笔记:https://gauntface.com/blog/2016/05/01/push-debugging-analytics


我这样做的方法是上面提到的post:

在服务工作者中,我导入了一个 javascript 文件来为我进行跟踪,设置分析 ID,然后在适当的事件中调用跟踪。寻找 self.analytics.trackEvent:

importScripts('./scripts/analytics.js');

self.analytics.trackingId = 'UA-77119321-2';

self.addEventListener('push', function(event) {
  let notificationTitle = 'Hello';
  const notificationOptions = {
    body: 'Thanks for sending this push msg.',
    icon: './images/icon-192x192.png',
    tag: 'simple-push-demo-notification'
  };

  // Important to trigger analytics asynchronously with logic
  // to show notification
  event.waitUntil(
    Promise.all([
      self.analytics.trackEvent('push-received'),
      self.registration.showNotification('Hello', notificationOptions)
    ])
  );
});

self.addEventListener('notificationclick', function(event) {
  event.notification.close();

  // Important to trigger analytics asynchronously with logic
  // to do other work (i.e. open window)
  event.waitUntil(
    Promise.all([
      self.analytics.trackEvent('notification-click'),
      clients.openWindow('https://gauntface.github.io/simple-push-demo/')
    ])
  );
});

对 Google Analytics Measurements Protocol 进行实际跟踪调用的代码如下所示。 API 非常简单,因此 payloadData 是分析所期望的属性,我以 API 期望的格式生成这些参数的字符串,过滤掉空值/空值:

class Analytics {
  trackEvent(eventAction, eventValue) {
    if (!this.trackingId) {
      console.error('You need to set a trackingId, for example:');
      console.error('self.analytics.trackingId = \'UA-XXXXXXXX-X\';');

      // We want this to be a safe method, so avoid throwing Unless
      // It's absolutely necessary.
      return Promise.resolve();
    }

    if (!eventAction && !eventValue) {
      console.warn('sendAnalyticsEvent() called with no eventAction or ' +
      'eventValue.');
      return Promise.resolve();
    }

    return self.registration.pushManager.getSubscription()
    .then(subscription => {
      if (subscription === null) {
        // The user has not subscribed yet.
        throw new Error('No subscription currently available.');
      }

      const payloadData = {
        // GA Version Number
        v: 1,
        // Client ID
        cid: subscription.endpoint,
        // Tracking ID
        tid: this.trackingId,
        // Hit Type
        t: 'event',
        // Data Source
        ds: 'serviceworker',
        // Event Category
        ec: 'serviceworker',
        // Event Action
        ea: eventAction,
        // Event Value
        ev: eventValue
      };

      const payloadString = Object.keys(payloadData)
      .filter(analyticsKey => {
        return payloadData[analyticsKey];
      })
      .map(analyticsKey => {
        return `${analyticsKey}=` +
          encodeURIComponent(payloadData[analyticsKey]);
      })
      .join('&');

      return fetch('https://www.google-analytics.com/collect', {
        method: 'post',
        body: payloadString
      });
    })
    .then(response => {
      if (!response.ok) {
        return response.text()
        .then(responseText => {
          throw new Error(
            `Bad response from Google Analytics ` +
            `[${response.status}] ${responseText}`);
        });
      }
    })
    .catch(err => {
      console.warn('Unable to send the analytics event', err);
    });
  }
}

if (typeof self !== 'undefined') {
  self.analytics = new Analytics();
}

您可以在以下位置找到所有这些:https://github.com/gauntface/simple-push-demo