我正在尝试通过使用google analytics for mobile的JSP版本
来设置我的Web服务器的移动风格上的事件的服务器端跟踪我正在尝试使用utme参数来跟踪确定的事件,但是我在第二天检查了Analytics结果页面并且我没有看到预期的事件(我自己触发了它们以便不会这是问题),即使我看到导航的跟踪似乎按预期工作。
我知道此参数未明确显示在移动参数列表中,但它确实出现在complete list参数中,这些参数是从移动页面链接作为参考。
简而言之:Google Analytics的移动(JSP)版本是否支持使用utme参数?
答案 0 :(得分:2)
Google移动实施分析目前不支持utme参数。但是,您可以使用此项目:
http://code.google.com/p/serversidegoogleanalytics/
哪个支持事件,非常简单,并且可以使用php 5.2
此项目的示例实现如下:
<?php
/**
* SSGA example
*/
include("ssga.class.php");
$ga = new Elements_Tools_Serversideanalytics();
$ga->setAccountId("UA-123456789-1");
$ga->setCharset("UTF-8");
$ga->setHostName("localhost");
$ga->setLanguage("en");
$ga->setPageTitle("SSGA example");
$ga->setPageView("/index.php");
/**
* Send events
*/
$ga->setEvent("Test", "iPad", "12345433454323", "124");
$ga->createEvent();
$ga->setEvent("Another Test", "iPad", "12345433454323", "21");
$ga->createEvent();
?>
这里还有一个更完整的项目,需要php 5.3: