PushManager.register()

Deprecated
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.

The register method is used to ask the system to request a new endpoint for notifications. This method has been superceded by PushManager.subscribe().

Syntax

JavaScript
var request = navigator.push.register();

Return

A 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 string, which is the endpoint URL.

Note: if you do not need the URL any more, please use Pushmanager.unregister() to clean up after yourself.

Example

JavaScript
var req = navigator.push.register();

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

req.onerror = function(e) {
  debug("Error getting a new endpoint: " + JSON.stringify(e));
}

Specification

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

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support Not supported Not supported Not supported Not supported Not supported
Feature Android Firefox OS Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support Not supported 1.1[1] Not supported Not supported Not supported Not supported

[1] This API is currently available on Firefox OS only for any installed applications.

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/pushmanager/register

API Deprecated Firefox OS Method Reference Simple Push API