理解几个Cookie"参数"

时间:2014-03-25 17:50:14

标签: javascript php cookies

我不确定低于2个Cookie propertysession& storeId)。如何分配它们以及如何为它们设置值。

{
    "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"
}

我知道休息cookie property,但不清楚session& storeId

有人可以解释一下。

由于

1 个答案:

答案 0 :(得分:2)

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

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

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

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

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