CookieStoreManager: unsubscribe() method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Service Workers.
The unsubscribe()
method of the CookieStoreManager
interface stops the ServiceWorkerRegistration
from receiving previously subscribed events.
Syntax
js
unsubscribe(subscriptions)
Parameters
subscriptions
-
An object list, each object containing:
Return value
A Promise
that resolves with undefined
when the service worker has been unsubscribed.
Exceptions
Examples
In this example, the ServiceWorkerRegistration
represented by registration
is unsubscribing from change events on the cookie named "cookie1"
with a scope of "/path1"
.
js
const subscriptions = [{ name: "cookie1", url: `/path1` }];
await registration.cookies.unsubscribe(subscriptions);
Specifications
Specification |
---|
Cookie Store API> # dom-cookiestoremanager-unsubscribe> |
Browser compatibility
Loading…