将虚拟综合浏览量提交到谷歌分析服务器端
我正在尝试提交一个虚拟综合浏览量来跟踪应用程序内的事件,该事件可能与用户访问页面无关,因此不允许执行 JavaScript。该项目是在 GAE 上使用 python 编写的。
到目前为止,我已经尝试通过 GET 请求通过图像 API 提交综合浏览量,但这似乎不起作用。下面是一个示例 URL:
http://www.google-analytics.com/__utm.gif?utmac=UA-<account_ID>-1&utmp=/<event>/<date>
给定 Google Analytics 帐户 ID 和域作为唯一信息,如何从服务器端向 Google Analytics 提交综合浏览量?
I'm trying to submit a virtual pageview to track events within application, that may not be associated with user visiting a page, and therefore will not allow for execution of javascript. The project is in python on GAE.
So far, I've tried to submit a pageview via an image API via a GET request, but that does't seem to work. Here's a sample URL:
http://www.google-analytics.com/__utm.gif?utmac=UA-<account_ID>-1&utmp=/<event>/<date>
Given a Google Analytics account ID and domain as the only information, how do I submit a pageview to Google Analytics from server side?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此库将所需的请求发送到 Google Analytics(分析)模仿页面查看事件。
You can use this lib that sends the required request to Google Analytics to mimic a page view event.