0

我正在练习使用 GAPI,到目前为止,我已经完成了大部分工作。
目前,我坚持显示 5 个最常用的关键字。我所有的代码返回的是一个空数组。
我一直在努力寻找解决方案,但到目前为止还没有成功。
这是我的代码:

<?php
$ga->requestReportData(GA_PROFILE_ID, 'searchKeyword', 'pageviews', '-pageviews', null, null, null, 1, 5);
foreach($ga->getResults() as $result) {

    echo "$result - ".$result->getpageViews();

}
?>
4

2 回答 2

1

最终,我自己找到了。
显然,searchKeyword 用于内部搜索,keyword 用于源搜索。

来源:
关键字:https
://developers.google.com/analytics/devguides/reporting/core/dimsmets/trafficsources#ga:keyword searchKeyword:https ://developers.google.com/analytics/devguides/reporting/core/dimsmets /internalsearch#ga:searchKeyword

于 2013-04-03T07:46:34.173 回答
0

看起来您正在为文档说应该是数组的属性发送字符串。

$ga->requestReportData(GA_PROFILE_ID, 'searchKeyword', 'pageviews', '-pageviews', null, null, null, 1, 5);

尝试使用数组作为GAPI推荐的文档:

$ga->requestReportData(GA_PROFILE_ID, array('searchKeyword'), array('pageviews'), array('-pageviews'), null, null, null, 1, 5);
于 2013-04-02T16:41:55.213 回答