Google Analytics(分析)实验始终选择原始版本?

时间:2013-11-22 16:42:19

标签: google-analytics google-analytics-api

我正在通过Google Analytics设置多变量测试。我通过API创建了实验,一切看起来都在运行,但是,只选择了原始版本并且没有提供变体。

我尝试过使用隐身窗口,并让其他人访问该页面,但每个人都会收到一个?utm_expid=XXXXXXXX-XX.YYYYYYYYYYYYYYYYYY.0页面,其中.0似乎表示“显示原“。

为什么实验可能始终显示原始的任何想法?这是我通过API检索的实验。

{
    "id": "YYYYYYYYYYYYYYYYYYYYY",
    "kind": "analytics#experiment",
    "accountId": "AAAAAAAA",
    "webPropertyId": "UA-ZZZZZZZZZ-0",
    "profileId": "XXXXXXXX",
    "name": "Product Page - Grid Content",
    "description": "Test of product page grid content.",
    "created": "2013-11-22T15:53:32.634Z",
    "updated": "2013-11-22T16:27:15.406Z",
    "objectiveMetric": "ga:timeOnSite",
    "optimizationType": "MAXIMUM",
    "status": "RUNNING",
    "startTime": "2013-11-22T16:00:37.367Z",
    "rewriteVariationUrlsAsOriginal": true,
    "winnerConfidenceLevel": 0.95,
    "minimumExperimentLengthInDays": 7,
    "trafficCoverage": 1,
    "equalWeighting": true,
    "variations": [{
        "name": "Newest Products (Original)",
        "url": "http://mystore.com/product/pastel-lipstick",
        "status": "ACTIVE",
        "weight": 0
    }, {
        "name": "Most Popular Products",
        "url": "?",
        "status": "ACTIVE",
        "weight": 0
    }, {
        "name": "Related Products",
        "url": "?",
        "status": "ACTIVE",
        "weight": 0
    }],
    "servingFramework": "REDIRECT",
    "editableInGaUi": true
}

更新

我怀疑这可能与weight: 0下的variations[]个字段有关。我不完全确定它们为什么显示为weight: 0,或者这是否真的可以防止显示变化。

最初,我想为我的变体设置url: "?"因为我想避免污染我的查询字符串。我没有使用不同的URL /查询字符串变量来确定要显示的变体,而是使用GA实验重定向添加的utm_expid查询字符串变量来确定要显示的变体。虽然API接受这些URL没有问题,但我不确定它们是否真的被认为是“有效的”。因此,我尝试将网址分别更改为?mvt=1?mvt=2,并将权重更改为0.3333并将变体发布。

虽然更改网址似乎有用,但有没有人对这种情况发生的原因或原因有充分的解释?

1 个答案:

答案 0 :(得分:1)

https://code.google.com/p/analytics-issues/issues/detail?id=377有一个未解决的问题。如果您订阅了该文件,则会在修复后收到通知。