为什么我从谷歌分析API获得的数据与谷歌分析网页界面不匹配



我使用Google API从Google Analytics获取数据,但指标与Google Analytics的Web界面不同。

即:我得到2015-03-01的数据 - 它返回浏览量79

但在谷歌分析的网络界面上,它是80。

搜索过一些和我一样的问题,但几乎他们显示了解决方法是抽样级别。

我尝试设置其他采样级别

 DataResource.GaResource.GetRequest request = Service.Data.Ga.Get(profileId, startDate.ToString("yyyy-MM-dd"),
                                                                            endDate.ToString("yyyy-MM-dd"), string.Join(",", metrics));
        if (dimensions != null)
        {
            request.Dimensions = string.Join(",", dimensions);
        }
        request.SamplingLevel = DataResource.GaResource.GetRequest.SamplingLevelEnum.HIGHERPRECISION;
        request.StartIndex = startIndex;
        return request;

之后,结果返回与之前相同,不会更改。

那么,有人知道这个问题吗?

简单的采样

数据与非采样数据,您可以在此处阅读:https://support.google.com/analytics/answer/1042498?hl=en

对于 API 工作,我通常使用 Web 查询浏览器来验证我的 API 调用是否正在发送,响应是否匹配以验证数据:https://ga-dev-tools.appspot.com/explorer/

相关内容

  • 没有找到相关文章

最新更新