有没有办法使用Google Analytics的API获取浏览量最多的子页面?
我想查看以“posts”开头的帖子浏览量最多的页面: 计数时应忽略 http://www.example.com/my-page/,但 http://www.example.com/posts/my-page/ 应包含在内。
我不知道如何查询 api 来实现这个结果。
I'd like to see the pages with the largest number of post views that start with the "posts" slug: http://www.example.com/my-page/ should be ignored when counting, but http://www.example.com/posts/my-page/ should be included.
I'm not sure how to query the api to achieve this result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向 api 查询添加过滤器:
您可以使用数据 Feed 进行测试查询浏览器在这些字段中使用以下值:
维度:
ga:pagePath
指标:
ga:pageviews
过滤器:
ga:pagePath=~(/帖子/)
另请参阅过滤器部分中的过滤运算符更多信息并请注意,正斜杠
/
不是保留字符,因此可以在过滤器中使用它进行匹配。反斜杠\
被保留。Add a filter to the api query:
You can test it out using the Data Feed Query Explorer using the following values in these fields:
dimensions:
ga:pagePath
metrics:
ga:pageviews
filters:
ga:pagePath=~(/posts/)
See also filter operators in the filters section for more information and to note that the forward slash
/
is not a reserved character so it can be used in your filter for matching. The backslash\
is reserved.