GoogleChromeLabs / web-push-codelab

Other
557 stars 293 forks source link

End point #15

Closed iliyaML closed 7 years ago

iliyaML commented 7 years ago

Where do I find the endpoint? I can't seem to find it.

gauntface commented 7 years ago

The endpoint is in the PushSubscription, i.e. the result of:

registration.subscribe(options)
.then(subscription => {
    console.log(JSON.stringify(subscription));
});