提问人:Ibrahim Shikhaliyev 提问时间:11/16/2023 最后编辑:Ibrahim Shikhaliyev 更新时间:11/16/2023 访问量:37
第三方 Cookie 到期日期
Third Party Cookie Expiry Date
问:
我正在尝试使用 JavaScript 以编程方式检索第三方 cookie 的到期日期。虽然我可以在浏览器的 DevTools 中查看到期时间(请参阅屏幕截图 https://i.stack.imgur.com/BW072.png,但我无法弄清楚如何通过代码获取此信息。
我尝试使用“document.cookie”,但它只返回第三方cookie的值,而不是到期日期。有没有办法使用 JavaScript 获取到期日期?
我将非常感谢任何可以帮助我实现这一目标的见解或代码片段。先谢谢你!
答:
2赞
user22910012
11/16/2023
#1
fetch('https://example.com') // Replace with the URL where the third-party cookie is set
.then(response => {
console.log(response.headers.get('Set-Cookie'));
// Parse the Set-Cookie header to extract expiry date information
// Remember, not all servers provide this information in the header
})
.catch(error => console.error(error));
评论