Web/API/PushManager/unregister

From Get docs

DeprecatedThis feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.


The unregister() method was used to ask the system to unregister and delete the specified endpoint. In the updated API, a subscription is can be unregistered via the PushSubscription.unsubscribe() method.

Syntax

var request = navigator.push.unregister(pushEndpoint);

Properties

pushEndpoint
A pushEndpoint to be unregistered.

Return

A [[../../../../Archive/B2G_OS/API/DOMRequest|DOMRequest]] object to handle the success or failure of the method call.

If the method call is successful, the request's result will be a PushRegistration object representing the endpoint that has been unregistered.

PushRegistration

Those objects are anonymous JavaScript objects with the following properties:

pushEndpoint
A string representing the URL of the unregistered endpoint.
version
Undefined when unregister.onsuccess is called.

Example

var req = navigator.push.unregister(pushEndpoint);

req.onsuccess = function(e) {
  var endpoint = req.result;
  debug("Unregistered endpoint: " + endpoint );
}

req.onerror = function(e) {
  debug("Error unregistering the endpoint: " + JSON.stringify(e));
}

Specification

Specification Status Comment
Push API Working Draft Defines the PushManager interface.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

unregister

Experimental'

Chrome

Full support 42

Edge Full support 16

Disabled'

Full support 16

Disabled'

Disabled' From version 16: this feature is behind the Enable service workers preference. Full support 17


Firefox Full support 44

Notes'

Full support 44

Notes'

Notes' Extended Support Releases (ESR) before Firefox 78 ESR do not support service workers and the Push API.

IE

No support No

Opera

Full support 29

Safari

No support No

WebView Android

No support No

Chrome Android

Full support 42

Firefox Android Full support 48

Notes'

Full support 48

Notes'

Notes' Push enabled by default.

Opera Android

Full support 29

Safari iOS

No support No

Samsung Internet Android

Full support 4.0

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also

  • PushManager
  • [[../../../../Archive/B2G_OS/API/DOMRequest|DOMRequest]]