Google Analytics(分析)API收入差异

时间:2018-08-15 16:36:37

标签: google-analytics google-analytics-api revenue

我从Google Analytics(分析)API收集的数据与用户界面中的自定义报告之间的收入指标存在差异。

每个值的差异保持相同的比率,其中通过API收集的数据大于自定义报告中的数据。

这是我正在使用的请求的正文:

{
"reportRequests":[
{
    "viewId":"xxxxxxxxxx",
    "dateRanges": [{"startDate":"2017-07-01","endDate":"2018-12-31"}],
    "metrics": [
        {"expression": "ga:transactionRevenue","alias": "transactionRevenue","formattingType": "CURRENCY"},
        {"expression": "ga:itemRevenue","alias": "itemRevenue","formattingType": "CURRENCY"},
        {"expression": "ga:productRevenuePerPurchase","alias": "productRevenuePerPurchase","formattingType": "CURRENCY"}
    ],
    "dimensions": [
        {"name": "ga:channelGrouping"},
        {"name": "ga:sourceMedium"},
        {"name": "ga:dateHour"},
        {"name": "ga:transactionId"},
        {"name": "ga:keyWord"}
    ],
    "pageSize": "10000"
}]}

这是响应的一部分:

{{  
"reports": [
    {
      "columnHeader": {
        "dimensions": [
          "ga:channelGrouping",
          "ga:sourceMedium",
          "ga:dateHour",
          "ga:transactionId",
          "ga:keyWord"
        ],
        "metricHeader": {
          "metricHeaderEntries": [
            {
              "name": "transactionRevenue",
              "type": "CURRENCY"
            },
            {
              "name": "itemRevenue",
              "type": "CURRENCY"
            },
            {
              "name": "productRevenuePerPurchase",
              "type": "CURRENCY"
            }
          ]
        }
      },
      "data": {
        "rows": [
          {
            "dimensions": [
              "(Other)",
              "bing / (not set)",
              "2018052216",
              "834042319461-01",
              "(not set)"
            ],
            "metrics": [
              {
                "values": [
                  "367.675436",
                  "316.55053699999996",
                  "316.55053699999996"
                ]
              }
            ]
          },
...

因此,如果我在Google Analytics(分析)用户界面中创建自定义报告并查找交易ID 834042319461-01,则会得到以下结果:

google Analytics custom report filtered by transaction id 834042319461-01

最后,我在API响应中有一个收入值367.675436,但在自定义报告中有一个333.12的值,比API的值高了10.37%。我将所有值都提高了10.37%。

¿为什么我有这些差异?

¿为解决这些问题,您将建议做什么?

谢谢。

2 个答案:

答案 0 :(得分:0)

我敢打赌,您正在采样(UI中的时间范围是否比API中的时间范围短?):https://support.google.com/analytics/answer/2637192?hl=en

在以下情况下采样:

  • 您自定义报告
  • 报告的整个时间范围内的会话数(无论查询返回的会话数是否少)超过500K(GA)或100M(GA 360)

结果是:

  • 报告将基于数据的子集(百分比取决于会话总数)
  • 因此,您的报告数据不会像往常一样准确

您可以采取哪些措施来减少采样:

  • 增加样本大小(只会将样本减少到一定程度,但是在大多数情况下不会完全删除样本)。在UI中,是通过报告顶部的选项完成的;在API中,是通过samplingLevel选项完成的:
  • 减少时间范围
  • 创建过滤视图,以便您的报告包含所需的数据,而无需自定义报告

答案 1 :(得分:0)

由于您正在查看特定的交易ID,因此这可能不是抽样问题。

如果比率恒定,从您的问题来看,似乎是10.37%。我相信您使用的货币就是这种情况。

拨打基于货币的通话时,尝试使用local currency metric API calls

例如-

ga:localTransactionRevenue而不是ga:transactionRevenue