Slotland Affiliates VIP campaign
Unlock a world of earning potential! With a trusted program that's been delivering results for years, and gain access to top-performing brands ๐Ÿš€

(Need Help) Tracking OneSignal Push Subscriptions

Nick

๐Ÿง™๐Ÿปโ€โ™‚๏ธ Wizard ๐Ÿ”ฎ
Staff Member
Community Leader
RevShare
Joined
May 7, 2018
Messages
5,377
Is anyone using OneSignal that could tell me how to accurately track when someone allows push notifications on a landing page?

Currently, I'm using the following Javascript, and it's tracking most of the subscriptions, but for some reason, it's not tracking all of them:

JavaScript:
OneSignal.on('notificationPermissionChange', function (permissionChange) {
         var  currentPermission = permissionChange.to;
         switch (currentPermission)  {
           case 'granted':
              console.log('โœ…  Permission - ALLOWED');
              break;
            case 'denied':
              console.log('โŒ Permission - DENIED');
              break;
            case 'default':
              console.log('๐Ÿ˜ญ Permission -  CLOSED');
              break;
         }
       });

Is there a better way (i.e. different method) to track this?

Edit: btw, here are the docs
 
To view the premium content in our affiliate marketing forum (including this awesome thread), you must first register and upgrade your account. Register today and become a part of our amazing community!
Top