GAPI在访客中丢失了一对夫妇号码

时间:2014-01-09 20:44:03

标签: php google-analytics google-analytics-api

我正在使用GAPI库,而且我在从我的网站的一般信息中检索独特访问时遇到问题。 (不是网页浏览量或其他任何内容)

对于我正在使用的访问:

$ga->requestReportData(ga_profile_id,array('userDefinedValue'),array('visits'), $sort_metric=null, $filter=null, $start_date,$end_date,$start_index=1,$max_results=100);

echo $ga->getVisits();

工作完美,给我一个确切的数字。

对于独特的访问:

$ga->requestReportData(ga_profile_id,array('userDefinedValue'),array('visitors'), $sort_metric=null, $filter=null, $start_date,$end_date,$start_index=1,$max_results=100);

echo $ga->getVisitors(); //gives me 771.047

这给了我几乎相同的数字,应该是797.731。

不确定我做错了什么,希望你能提供帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

好的,我找到了解决方案,

对于维度我必须使用“”而不是“ userDefinedValue

    $ga->requestReportData(ga_profile_id,array('day'),array('visitors'), $sort_metric=null, $filter=null, $start_date,$end_date,$start_index=1,$max_results=100);

echo $ga->getVisitors(); //gives me the correct answer