gpt4 book ai didi

Mixpanel cookie 未设置

转载 作者:行者123 更新时间:2023-12-02 01:13:02 24 4
gpt4 key购买 nike

TL;博士; Mixpanel 不会设置其 cookie 从而导致 unique_id 不断变化

我有 3 个 mixpanel 项目:local/staging/pro。在本地 mixpanel 中跟踪工作得很好,但在暂存中,即使代码相同(mixpanel token 除外),事件也会正确发送,但始终会更改 disting_id。所以,我在 mixpanel 中看到每个事件就好像它来自不同的设备?!

我检查了一下,问题可能是由于 mixpanel 根本没有在我的浏览器中设置其 cookie。

暂存的源代码如下所示:

<head>
...
<script type="text/javascript" async="" src="//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js"></script>

之前

<script>
(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f)}})(document,window.mixpanel||[]);
mixpanel.init("xxxxxx3ecxxx68a2ff74xxxx", {debug:true});
</script>

最后我跟踪了

<script>
mixpanel.track('Visit');
</script>

最佳答案

如果这是您的临时站点,您可能使用不允许跨子域 cookie 的顶级域(例如 heroku、aws 等),例如 yoursubdomain.herokuapp.com。您可以:

  1. 使用 DNS 设置中的 CNAME 记录将暂存 yousubdomain.topleveldomain.com 映射到 staging.yourdomain.com

  • 在 mixpanel.init 中手动启用 cookie

    mixpanel.init(PROJECT_TOKEN, {cross_subdomain_cookie : false});

  • 这里是 mixpanel 文档,解释了:https://mixpanel.com/help/questions/articles/mixpanel-and-herokuappcom-subdomains-and-other-common-top-level-domains

    这里是破坏 cookie 的顶级 url 列表: https://publicsuffix.org/list/effective_tld_names.dat

    关于Mixpanel cookie 未设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34238978/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com