0

我们在通过 Adob​​e Air 移植的 iOS 应用程序中使用 GA for Flash,并且看到 Google Analytics 中收集了一些时髦的数字。我们进行了一些测试,发现每次打开应用程序时,它都会计算一次新访问和一次新的唯一访问,即使它只是最小化并重新打开。

我们假设 30 分钟的超时将在这里生效,即使快速最小化并重新打开,GA 也会将其视为一次访问。情况似乎并非如此。

有谁知道我们如何设置 GA 实现以根据首次启动应用程序时提供的用户 ID 记录唯一访问,和/或让它准确计算访问次数?

有没有人见过类似的东西?

4

1 回答 1

0

Google Analytics allows you to set up Custom Events to track user interactions so this could be dispatched depending on a flag stored in a config file (to determine if it is the first time the application is run).

Depending on your implementation of Air, i.e AS3 / Javascript, if you are using AS3 you may have to utilise the ExternalInterface api to call a javscript method from the application.

This would then allow you to track these custom events and ignore the erroneous default visits?

于 2012-06-22T10:49:12.067 回答