The Push API defines a push service as
a system that allows application servers to send push messages to a webapp.
A subscription to the service is created via a call to serviceWorkerRegistration .pushManager.subscribe()
without any parameters.
How is the URL for this push service configured? I would have expected .subscribe()
to take a URL parameter for the service.
The Push API's sister spec, Generic Event Delivery Using HTTP Push, says:
push service: This resource is used to create push message subscriptions (see Section 3). A URL for the push service is configured into user agents.
But it does not specify how this configuration would take place.