您是否使用 Google Analytics API 做过有趣的事情?
我还没有听说过很多关于使用 Google Analytics API 构建的酷东西的故事。愿意分享你的故事吗?
I haven't heard many stories about cool things built with the Google Analytics API. Care to share your stories?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请查看 Google Analytics 应用程序库,这是 Google 为增强 Google Analytics 而构建的官方展示,通过 API 和修改跟踪代码。
就个人喜好而言,PadiTrack 非常出色,当前的大多数编辑推荐也是如此。
Check out the Google Analytics Application Gallery, Google's official showcase of things built to augment Google Analytics, both via the API and by way of modifiying the tracking code.
As far as personal preferences, PadiTrack is pretty great, as are most of the current Editor's Picks.
我创建了 embeddedanalyitcs.com。我们的理念是围绕利用 Google Analytics API 中的数据为那些不一定具备使用 API 技能的网络发布商而构建的。目前我们有两项主要服务:
EmbeddedCharts 该服务允许您使用维度、指标和时间范围(例如过去 7 天、30 天、一年)的任意组合来创建图表。然后,您只需复制 iframe 标记中包含的代码即可将这些图表嵌入到您的网站中。很久以前(在 API 发布之前),我想要一种从 Google Analytics 中筛选数据的方法,以显示潜在广告商的每日访问情况。当时我正在使用预定的电子邮件导出并解析电子邮件。这是一个痛苦。然后是 API,这使得事情变得更容易。
入站链接警报 这是一个漂亮的小服务,它会提醒您新检测到的指向您网站的链接。本质上,我们会查询您的 GA 帐户以获取指向您网站的所有现有链接。创建此“数据仓库”后,该服务会定期(每小时或每天)查询最后一天的入站链接。这些链接将与数据仓库进行比较,如果发现新链接,它会向您发送一封电子邮件警报。
I have created embeddedanalyitcs.com. Our concept is built around leveraging data from the Google Analytics API for web publishers who don't necessarily have the skills to utilize the API. Currently we have two primary services:
EmbeddedCharts This is a service which allows you to create charts using any combination of dimensions, metrics and time frame (e.g. last 7 days, 30 days, year). You can then embed these charts into your site simply by copying code contained in an iframe tag. Long ago (before the API was released) I wanted a way to cull data from my Google Analytics to show daily visits for potential advertisers. At the time I was using the scheduled email export and parsing the email. This was a pain. Then came the API and this made it easier.
Inbound LinkAlerts This is a nifty little service which alerts you of newly detected links pointing to your site. Essentially we query your GA account for all existing links to your site. Once this "data warehouse" is created the service periodically (hourly or daily) queries inbound links for the last day. These links are compared against the data warehouse and if a new one is found it sends you an email alert.
我发现很难从 Google Analytics 获取有关我应该重点测试哪些浏览器和操作系统的信息,因此我建立了一个网站来关联 Analytics 数据并帮助做出决定。
browsertest.info
注意:该网站几乎完全是客户端 JavaScript,因此您的数据永远不会发送到服务器。
I found it difficult to get information from Google Analytics about which browsers and operating systems I should focus on for testing, so I put up a site that correlates Analytics data and helps make that decision.
browsertest.info
Note: the site is almost entirely client-side JavaScript, so your data is never sent to the server.