如何在 GoogleAnalytics API 中获取单独页面的浏览量数据
我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。对
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.php
或ga :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 usefilter=ga:pagePath==/company/82808/index.php
orga:pagePath=~/company/82808
for a contains match.Test out queries in Google's Data Feed Query Explorer