有没有办法使用Google Analytics的API获取浏览量最多的子页面?

发布于 2024-12-21 12:48:54 字数 277 浏览 1 评论 0原文

我想查看以“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦境 2024-12-28 12:48:54

向 api 查询添加过滤器:

filters=ga:pagePath=~(/posts/)

您可以使用数据 Feed 进行测试查询浏览器在这些字段中使用以下值:

维度:ga:pagePath

指标:ga:pageviews

过滤器:ga:pagePath=~(/帖子/)

另请参阅过滤器部分中的过滤运算符更多信息并请注意,正斜杠 / 不是保留字符,因此可以在过滤器中使用它进行匹配。反斜杠 \ 被保留。

Add a filter to the api query:

filters=ga:pagePath=~(/posts/)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文