gpt4 book ai didi

javascript - 了解几个 Cookie "Parameter"

转载 作者:行者123 更新时间:2023-11-30 17:32:49 25 4
gpt4 key购买 nike

我不确定以下 2 个 cookie property(sessionstoreId)。如何分配它们以及如何为它们设置值。

{
"domain": "localhost",
"expirationDate": 1395835493.034348,
"hostOnly": true,
"httpOnly": true,
"name": "token",
"path": "/",
"secure": false,
"session": false, /* What does session option mean here & how to assign them. */
"storeId": "0", /* What does storeId mean here & how to assign them. */
"value": "6e5ef234b7f34fd265f011ab80fc0cff"
}

我知道 rest cookie 属性,但不清楚 sessionstoreId

谁能解释一下。

谢谢

最佳答案

我猜你正在使用 chrome 扩展 API 来打印此信息。

cookie 的 storeid 和 session 属性将归因于 Chrome 扩展 API。 RFC for Cookie 没有这些。

session - 如果 cookie 是 session cookie,则为真,而不是具有到期日期的持久性 cookie。
storeId - 包含此 cookie 的 cookie 存储的 ID,在 getAllCookieStores() 中提供。

来自: https://developer.chrome.com/extensions/cookies

更新:忽略过期值将使其成为 session cookie。 Create a cookie that lasts until the browser is closed(Session Cookie?)

关于javascript - 了解几个 Cookie "Parameter",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22642489/

25 4 0