This project shows how to use the new Chrome Push Notifications in a website, allowing easy engagement with users that are currently not browsing the website. This project uses the Realtime Messaging JavaScript SDK and requires Chrome 42+
-
Register to get your free Realtime Messaging application key at https://accounts.realtime.co/signup/
-
Create a Google Project using GCM. Follow the tutorial.
-
Update the Web App Manifest file (
manifest.json
) and enter your Google Project Number obtained from the previous step:{ "name": "Realtime Chrome Push Demo", "short_name": "Push Demo", "gcm_sender_id": "<YOUR_GOOGLE_PROJECT_NUMBER>" }
-
Edit the
service-worker.js
file to change the notification title, body and redirect URL. When a push notification is received this service worker will be executed and the eventpush
will be emitted; -
As soon as the page loads execute the
ChromePushManager
to launch the service worker and get the GCMregistrationId
:var chromePushManager = new ChromePushManager('./service-worker.js', function(error, registrationId){ ... });
-
Connect a Realtime client and call the
subscribeWithNotifications
method to subscribe the desired channel for push notifications using the GCMregistrationId
:client.subscribeWithNotifications(channel, true, registrationId, function (theClient, channel, msg) { ... } );
If you want to control to which users you are sending each push you should use a private channel for each user. If you want to broadcast a push notification to all users you should use a global channel that every user subscribes.
A mixed private/global channel strategy can also be used, it really depends on your use case.
- This will only work on Chrome 42+
- Your website must use the https protocol
- In Chrome Desktop at least one Chrome tab must be opened in order to receive push notifications (Chrome must be running)
- At the moment the Chrome push event doesn't allow you to obtain the push payload. If you want to customize your push title and body you'll need to call an external REST API from your service worker. The Realtime Cloud Storage and Realtime Code Hosting services might be useful here.
You can test the Realtime Chrome Push Notifications at this on-line example.