I'm trying to subscribe to PushManager to send push notification, but I'm always getting an error when calling subscribe.
This is my subscribe call
registration.pushManager.subscribe({ userVisibleOnly: true })
.then(function (subscription) { /* ... */})
.catch(function (err) { /* ... */})
Nothing weird as you can see, and that call is always throwing
DOMException: Registration failed - push service error
I'm not sure why is that. What I've checked so far
- I have a
gcm_sender_id
property in mymanifest.json
. - The permision for notification is granted in the client.
registration.pushManager.getSubscription()
always getnull
and subscribe always throw the above error.
What else should I look? Any help to succesfully subscribe to push notifications is welcome, by the way, I'm using chrome 55, if you need more info just let me know.
EDIT: All of the registration code is here on the registerServiceWorker
function.
Thanks.
Assuming you have registered the service worker properly, using something like :
I suggest you use a relative path for your service worker like I did instead of using window.location.origin like you did in your code and it is always better to keep the serviceworker file at the root.
Use this approach to subscribe for push and get an endpoint.
If it still doesn't work: -Try unregistering the existing worker from chrome://serviceworker-internals and make sure you close all tabs when you do that.
If it still doesn't work: -Try creating a new chrome profile by clicking on your name in the top right corner of chrome. (I faced this once)
Check this code for your reference.