Google Analytics IOS SDK 会话超时
Google Analytics 报告的每次访问的平均时间与我的服务器日志不符。 IOS SDK 的默认空闲会话超时是多少?
Average time spent per visit as reported by Google Analytics does not match my server logs. What is the default idle session timeout for the IOS SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google Analytics SDK 版本的工作方式与网络版本不太一样。看起来您需要以下内容:
您需要结束给定的会话,因为在后台运行的应用程序将继续保留该会话。监视应用程序状态并相应地调用适当的方法。更多信息请参见:
为什么我的 iOS 应用程序在 Google Analytics(分析)中的会话长度为 30 分钟以上?
因此,要回答您的问题,您需要了解如何使用日志计算应用程序中的时间,以及如何使用 Google Analytics 进行模拟,同时考虑后台状态。
The SDK version of Google Analytics doesn't work quite the same way as the web version. It looks like you need something along the lines of:
You need to end a given session because an app running in the background will continue to hold that session. Monitor the application state and call the appropriate methods accordingly. More here:
Why are my iOS app's session lengths 30 min + in Google Analytics?
So, to answer your question you need to know how you're calculating time in app with your logs and how to emulate that with Google Analytics, taking the background state into consideration.