gpt4 book ai didi

javascript - 在 Google Analytics API 中使用和查询自定义维度

转载 作者:数据小太阳 更新时间:2023-10-29 05:12:47 26 4
gpt4 key购买 nike

我正在尝试查询我的 Analytics(通用)以接收按自定义维度排序的指标列表。

7 月,Google Analytics API blog 宣布:

"Developers can use custom dimensions to send unique IDs into Google Analytics, and then use the core reporting API to retrieve these IDs along with other Google Analytics data.

For example, your content management system can pass a content ID as a custom dimension using the Google Analytics tracking code. Developers can then use the API to get a list of the most popular content by ID and display the list of most popular content on their website."

尽管如此,我还是无法从我的 Analytics 中检索到任何结果。我的发送功能如下:

ga('send', 'pageview', {
'dimension1':'red'
});

不幸的是,使用“ga:dimension1 == red”过滤器查询 GA 不会检索到任何结果。

gapi.client.analytics.data.ga.get({
'ids': 'ga:' + "123456",
'start-date': '2013-11-10',
'end-date': '2013-11-20',
'metrics': 'ga:visits',
'filters': 'ga:dimension1==red'
}).execute(function(r){console.log(r);});

我也曾尝试使用自定义分割来检索数据,但无济于事:

'segment': 'dynamic::ga:dimension1==red'

数据出现在 GA 的自定义报告中。如何通过 API 访问它?

最佳答案

您需要在查询中包含维度。例如 'dimension': 'ga:dimension1',然后使用您的过滤器 'ga:dimension1==red'Query Explorer对测试 API 请求很有帮助。

关于javascript - 在 Google Analytics API 中使用和查询自定义维度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20228251/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com