CookieStoreManager.getSubscriptions()
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The getSubscriptions()
method of the CookieStoreManager
interface returns a list of all the cookie change subscriptions for this ServiceWorkerRegistration
.
Syntax
let promise = registration.cookies.getSubscriptions();
Return value
A promise
that resolves with a list of objects, each containing:
name
-
A
USVString
with the name of a cookie. url
-
A
USVString
with the url of the scope used to subscribe to the cookie(s).
Examples
If the ServiceWorkerRegistration
represented by registration
has subscribed to any cookie change events subscriptions
will resolve to a list of objects containing the name and url of those cookies.
const subscriptions = await registration.cookies.getSubscriptions();
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
getSubscriptions |
87 |
87 |
No |
No |
73 |
No |
87 |
87 |
No |
62 |
No |
14.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CookieStoreManager/getSubscriptions