Google Analytics:有没有办法使用Analytics API创建同类群组分析报告?

时间:2015-08-10 12:56:59

标签: analytics google-analytics-api

无法在维度和指标资源管理器中找到同类群组维度或用户获取日期,以将数据提供给Google Script .gs(https://developers.google.com/analytics/devguides/reporting/core/dimsmets

1 个答案:

答案 0 :(得分:4)

您应该尝试使用dateOfSession<> segment notation

segment=users::sequence::^ga:sessionCount==1;dateOfSession<>2014-05-20_2014-05-30;->>ga:sessionDurationBucket>600

上述细分将为您提供2014年5月20日至2014年5月30日之间第一次会话且已花费&gt;的用户在网站上600秒。

2016年4月更新

截至2016年4月,随着Analytics Reporting API V4的发布,现在可以通过直接查询API来创建cohort报告:

POST https://analyticsreporting.googleapis.com/v4/reports:batchGet
{
"reportRequests": [
        {
        "viewId": "XXXX",
        "dimensions": [
            {"name": "ga:cohort" },
            {"name": "ga:cohortNthWeek" }],
        "metrics": [
            {"expression": "ga:cohortActiveUsers"}
        ],
        "cohortGroup": {
            "cohorts": [{
                "name": "cohort 1",
                "type": "FIRST_VISIT_DATE",
                "dateRange": {
                    "startDate": "2015-08-01",
                    "endDate": "2015-09-01"
                }
            },
            {
                "name": "cohort 2",
                "type": "FIRST_VISIT_DATE",
                "dateRange": {
                    "startDate": "2015-07-01",
                    "end_date": "2015-08-01"
                }
            }],
        }
    }]
  }

该文档包含各种语言的samples

重要的是要注意Analytics Help Center中提到的终身价值查询("lifetimeValue": True和所有ga:acquisition...维度),只能查询App Views