提问人:CPO 提问时间:10/21/2022 更新时间:10/21/2022 访问量:150
在 chrome 开发者中识别 shopify 同意 Cookie 名称
Identify shopify consent cookie name in chrome developer
问:
只是一个简单的问题:我尝试找到 shopify conent API 用于 GTM 同意模式配置的 shopify 同意 cookie 的名称。
我还发现,即使我删除了所有 cookie,所有第三方 cookie 仍然被加载。
谢谢社区:)
答:
0赞
Ramon Ozod-Seradj
10/21/2022
#1
该cookie称为“_tracking_consent”,您可以在浏览器控制台中找到它。 要读取它,您必须先解码其值并解析它(因为它是 JSON)。 这样做之后,您可以根据需要读取其属性。
function readShopifyConsentCookie() {
//use built in GTM variable to read cookie value https://i.stack.imgur.com/HWF14.png
var consentCookie = {{_tracking_consent}};
//returns the object - if you need a certain key-value pair out of the object, feel free to add more lines of code :D
return JSON.parse(decodeURIComponent(consentCookie));
}
评论