我可以使用 Google Analytics API 找到特定页面最流行的关键字吗?
我希望使用分析 API 来找出指向特定页面的最流行的搜索词(有机)。
这可能吗?
我浏览了文档,发现它看起来好像概述了我可以从 API 检索的所有可能的数据,但我在这里看不到此信息。
http://code.google.com/apis/analytics/docs/gdata /gdataReferenceDimensionsMetrics.html
如果是这种情况,是否有任何原因导致 API 不完整?我假设如果我可以使用分析接口访问数据,那么我应该能够使用 API 查询它 - 这个假设不正确吗?
I was hoping to to use the analytics api to find out the most popular search terms (organic) that lead to a particular page.
Is this possible?
I've trawled the documentation and found this which looks as if it outlines all possible data I can retrieve from the API and I can't see this information here.
http://code.google.com/apis/analytics/docs/gdata/gdataReferenceDimensionsMetrics.html
If this is the case, is there any reason that the API isn't complete? I would assume if I can access the data using the analytics interface then I should be able to query for it using the API - is this assumption incorrect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。例如,如果您想查看哪些关键字导致了多少次进入index.html,
请设置:
Dimensions: ga:keyword
Metrics: ga:entrances
Segment : gaid::-5
过滤器: ga:landingPagePath==/index.html
排序: -ga:entrances
(分段 gaid::-5 分段数据仅包括来自有机搜索的访问;按 -ga:entrances 排序将按降序排列访问次数)。
在这里尝试一下:http://code.google.com/apis/analytics/docs/gdata/gdataExplorer.html?dimensions=ga%253Akeyword&metrics=ga%253Aentrances&segment=gaid%253A%253A-5& ;filters=ga%253AlandingPagePath%253D%253D%252Findex.html&sort=-ga%253Aentrances&开始日期=2010-09-23&结束日期=2010-10-07&最大结果=50
Yes, this is possible. For example, if you wanted to see what keywords led to how many entrances to index.html,
Set:
Dimensions: ga:keyword
Metrics: ga:entrances
Segment: gaid::-5
Filters: ga:landingPagePath==/index.html
Sort: -ga:entrances
(Segment gaid::-5 segments the data to only include visits referred from Organic Search; sorting by -ga:entrances will order the number of visits in descending order).
Try it out here: http://code.google.com/apis/analytics/docs/gdata/gdataExplorer.html?dimensions=ga%253Akeyword&metrics=ga%253Aentrances&segment=gaid%253A%253A-5&filters=ga%253AlandingPagePath%253D%253D%252Findex.html&sort=-ga%253Aentrances&start-date=2010-09-23&end-date=2010-10-07&max-results=50