This article needs a technical review. How you can help.
This article needs an editorial review. How you can help.
This translation is incomplete. Please help translate this article from English.
Var olan Cookie'leri okuma
Cookies for a given host, represented as objects, can be enumerated as such:
let enum = Services.cookies.getCookiesFromHost("example.com"); while (enum.hasMoreElements()) { var cookie = e.getNext().QueryInterface(Ci.nsICookie2); dump(cookie.host + ";" + cookie.name + "=" + cookie.value + "\n"); }
All cookies, regardless of host, can be enumerated using Services.cookies.enumerator
rather than getCookiesFromHost()
.
Bir Cookie'yi ayarlama
The following code demonstrates how to set a cookie in Firefox.
Services.cookies.add(".host.example.com", "/cookie-path", "cookie_name", "cookie_value", is_secure, is_http_only, is_session, expiry_date);