NA
367 8
Created
Updated
Viewed
8.4k times

Does anyone have any experience with web push notifications? I'm using a paid site and I think if I could just wrap my head around it, I could code it up myself. The problem is, it looks like it uses CURL, and my JavaScript is limited. (still) I mainly do PHP/MySQL projects.

add a comment
0

1 Reply

  • Votes
  • Oldest
  • Latest
Replied
Updated

I have briefly looked at this before, but haven't actually implemented it myself either. I am thinking about making it available for the next version of Ozzu. You could use a service to do it like you mentioned, but it is also possible to handle it all yourself. This resource goes into great depth:

https://developers.google.com/web/funda ... push-works

There are three main steps to get this to work:

  1. Add the client side JavaScript so that a user can subscribe to push messages from you.
  2. The API call from your server back-end that triggers the push message to the subscriber.
  3. The service worker JavaScript file that will receive the push event and this is what handles and shows the notification to the subscriber.

If I were to guess, the second step is probably the one where you would get hung up on. The key piece of information here is that each browser can use any push service they want, it's something developers have no control over. You just need to keep track of the endpoint to use for that user for when you do your API call.

The good news is that it seems like any push service will utilize the Web Push Protocol which is an IETF standard that defines how you make an API call to a push service.

So for each user who subscribes to your push events, you would need to keep track of each user and what push endpoint URL the web browser is using. Then when you push an event you would utilize the API endpoint for that user. The push service will then either deliver the notification immediately if the user is online, or will store the message until they come online to deliver the message.

That should be it in a nutshell. There are quite a few steps involved though, and I left things out such as when you call subscribe how you pass in your public application server key that is used later to verify that it is you who is sending the push message to prevent anyone else from sending messages to an application's users.

This doesn't look like anything you can set up quickly, you are going to have to learn the entire process if you want to implement it yourself.

  • 0
    Just thought I would chime in quickly and since this post Ozzu has now implemented web push notifications and implemented it exactly as described in this post. — Brian Wozeniak
add a comment
0