Google AnalyticsAPI - 在过滤条件中指定包含数字的网址

时间:2015-07-01 09:47:11

标签: regex google-analytics-api

我正在尝试在filter中配置Google Analytics API,但我无法提取包含数字的网址。

  

ex:/ comptable-opcvm-debutant- 3

我的配置:

ga:medium==organic;ga:PagePath==~.[0-9]+

此处报告状态:

=> Cannot read property "0" from undefined.

1 个答案:

答案 0 :(得分:1)

在页面路径中使用最后一位数字进行过滤对我来说在原始表达式中进行一些更改后没有任何问题。我在Query Explorer中测试了它:

  • 指标: ga:网页浏览量
  • 尺寸: ga:pagePath
  • 过滤器: ga:pagePath =〜^ [^?] + \ d + $

结果示例:

/071620716207162                            1
/JZepeda13277JZepeda13277JZepeda13277       1
/help/how-do-i-send-photo-or-file-expert-0  48
/help/topics/141                            47
...

Query Results