2

我在 Google Analytics 调用中设置了自定义变量,它们工作正常。

我想让用户更容易看到页面上设置了哪些自定义变量,这样他们就不必查看源代码。他们将使用设置的值来过滤 Google Analytics(分析)中的自定义报告。

所以想法是写一个小书签来显示值集。

我的问题是我找不到存储值的变量的名称。

这不是自定义变量名称本身。

我查看了 Analytics API,在 Chrome 中使用了 gatest.js 并检查了跟踪 GIF。

我想在警报中显示的是来自以下的数据:

Custom Var 5: label:'MenuIDs' value:'xxx' scope:'Page'

我假设它是这样的:

utme or _utme

为这么简单的问题道歉。

4

1 回答 1

0

Using the google analytics debugger shows that the utme parameter in the gif contains custom variable labels in some kind of encoded format.

In my site it shows:

utme=8(2![CVlabel1][CVlabel2][CVlabel3])9(2![CVvalue1][CVvalue2][CVvalue3])11(4!1)

where [CVlabelX] and [CVvalueX] is where my CV data appeared.

Hope that helps

于 2012-08-17T22:54:12.857 回答