使用 Google Analytics 和 php 按页面获取唯一查看者

发布于 2024-11-02 04:26:58 字数 345 浏览 0 评论 0 原文

我正在尝试通过网址获取访问者。我可以使用 PHP 来做到这一点吗? 我正在搜索与此 http://code.google 相关的文档。 com/p/gapi-google-analytics-php-interface/,但似乎没有文档可以执行此类操作。

示例:

www.helloworld.com/users/adamramadhan =>拥有 1082 个页面的唯一页面浏览量。

我怎样才能做到这一点? 感谢您的关注。 亚当·拉马丹

I'm trying to get my visitor by url. Can I do that using PHP?
I'm searching docs related to this http://code.google.com/p/gapi-google-analytics-php-interface/, but it seems that there is no docs to do this kind of things.

Example:

www.helloworld.com/users/adamramadhan => have 1082 page unique page view.

How can I do that?
Thanks for looking in.
Adam Ramadhan

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

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

发布评论

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

评论(1

生生漫 2024-11-09 04:26:58

您只需请求 pagePath 维度和 uniquePageviews 指标即可。您提供的链接上的示例中的行如下:

$ga->requestReportData(145141242,array('pagePath'),array('uniquePageviews'));

可用维度和指标的完整列表位于 http://code.google.com/apis/analytics/docs/gdata/gdataReferenceDimensionsMetrics.html

You just need to request the pagePath dimension and uniquePageviews metric. The line from the example on the link you gave would be:

$ga->requestReportData(145141242,array('pagePath'),array('uniquePageviews'));

A complete list of available dimensions and metrics is available at http://code.google.com/apis/analytics/docs/gdata/gdataReferenceDimensionsMetrics.html

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