我从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%。
¿为什么我有这些差异?
¿为解决这些问题,您将建议做什么?
谢谢。
答案 0 :(得分:0)
我敢打赌,您正在采样(UI中的时间范围是否比API中的时间范围短?):https://support.google.com/analytics/answer/2637192?hl=en
在以下情况下采样:
结果是:
您可以采取哪些措施来减少采样:
UI
中,是通过报告顶部的选项完成的;在API
中,是通过samplingLevel
选项完成的:答案 1 :(得分:0)
由于您正在查看特定的交易ID,因此这可能不是抽样问题。
如果比率恒定,从您的问题来看,似乎是10.37%。我相信您使用的货币就是这种情况。
拨打基于货币的通话时,尝试使用local
currency metric API calls。
例如-
ga:localTransactionRevenue
而不是ga:transactionRevenue