如何在 GoogleAnalytics API 中获取单独页面的浏览量数据

发布于 2024-12-28 03:39:01 字数 497 浏览 0 评论 0原文

我在我的 Codeigniter 网站上使用 GoogleAnalytics API 库,但我没有在那里和 Google API 指南 - 如何获取单个页面的结果。

假设我有页面 http://www.example.com/company/82808,并且我向 GA API 发出请求并获取此 URL 的综合浏览量和访问者指标 - example.com/company/8280。

这可能吗?

I am using GoogleAnalytics API library on my Codeigniter site, but i didn't find there and on Google API guide -
how to get results for a one exact page.

Say i've got page http://www.example.com/company/82808, and i make request to GA API and get pageviews and visitors metrics for this URL - example.com/company/8280.

Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无人问我粥可暖 2025-01-04 03:39:01

是的,这是可能的。对 ga:pagePath 应用过滤器

在请求中包含:

维度:ga:pagePath

指标:ga:pageviews,ga:visitors

过滤器:< code>filter=ga:pagePath==/company/82808 如果页面在 GA 中是这样记录的,则使用此精确匹配。如果记录像 /company/82808/index.php 那么你可以使用 filter=ga:pagePath==/company/82808/index.phpga :pagePath=~/company/82808 用于包含匹配。

在 Google 的数据 Feed 查询浏览器中测试查询

Yes, it's possible. Apply a filter for ga:pagePath

Include in the request:

Dimension: ga:pagePath

Metrics: ga:pageviews,ga:visitors

Filter: filter=ga:pagePath==/company/82808 use this exact match if that is how the page is recorded in GA. If it's recorded like /company/82808/index.php then you can use filter=ga:pagePath==/company/82808/index.php or ga:pagePath=~/company/82808 for a contains match.

Test out queries in Google's Data Feed Query Explorer

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