gpt4 book ai didi

session - 即使超时设置为 1 小时,谷歌分析 session 超时?

转载 作者:行者123 更新时间:2023-12-03 15:49:53 31 4
gpt4 key购买 nike

我已将 session 超时设置为 1 小时

enter image description here

我正在使用测量 API,因为它是三星 Tizen 电视应用程序,我无法使用官方的 Web/Android/iOS SDK。

我正在发送

var params = {
v: 1,
tid: GA_TRACKING_ID,
cid: data.deviceId,
t: 'pageview',
dh: '...',
dp: encodeURIComponent($location.path()),
cd: transition.to().title + ($stateParams.gaTitle ? ' (' + $stateParams.gaTitle + ')' : '') || 'Unknown',
an: '...',
'ga:mobileDeviceModel': data.deviceModel
};

每 10 分钟,我发送一次
var params = {
v: 1,
tid: GA_TRACKING_ID,
cid: data.deviceId,
t: 'event',
ec: 'RefreshToken',
ea: 'Starting',
el: '',
ev: '',
ni: 1,
an: '...',
'ga:mobileDeviceModel': data.deviceModel
};

刷新我的应用程序 token ,同时尝试扩展我的 session 。似乎我的 GA 仪表板中没有跟踪第二个事件,1 天后我在实时事件和行为 > 事件中都没有看到它。

即使“扩展” session 的事件不起作用,我的 session 时间不应该是〜1小时,因为超时是那个时间?而且我没有手动结束 session 。

更新

enter image description here

注意有 <10 分钟前的事件,但有 0 个用户在线,即使我的浏览器仍然在线

最佳答案

ev 不能是字符串:

ev: '',

必须是数字(或省略):
ev: 10,

(事件值现在对应于空闲/保持事件的分钟数)

User Explorer test user

关掉你

GA 似乎是纯粹根据交互式点击计算 session ,所以不幸的是 ni 不会工作,应该被省略或禁用:
ni: 0,

User Explorer test user with an interactive event

dh、dp、cd 应该出现在过滤 View 中

这些在事件上下文中是可选的,但您应该使用它们来匹配上一页或屏幕。否则,您将无法在事件报告中使用页面尺寸或构建精确的过滤 View ,因为您有更多数据。

关于session - 即使超时设置为 1 小时,谷歌分析 session 超时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46438866/

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