我在Google Analytics中有一個非常簡單的自定義報告,列出了某個月的日期,訪問次數,唯一身份訪問者和瀏覽量。如何使用GAPI和Google Analytics每天獲得唯一的訪問者?
我想使用GAPI複製這個非常簡單的報告,但我找不到一個簡單的方法將唯一訪客添加到我的表。
看到我的代碼如下。如何修改此代碼以顯示唯一身份訪問者?
$profile_id = "xxxxxxxx";
$report_id = "xxxxxxxx";
$dimensions = array('date');
$metrics = array('pageviews','visits');
$sort_metric = array('date');
$filter = null;
$start_date = '2013-02-01';
$end_date = '2013-02-28';
$start_index = 1;
$max_results = 10000;
echo '<table>';
echo '<tr>';
echo '<th>Date</th>';
echo '<th>Visits</th>';
echo '<th>Unique Visitors</th>';
echo '<th>Page Views</th>';
echo '</tr>';
$ga = new gapi('[email protected]','xxxxxxxx');
$ga->requestReportData($profile_id, $dimensions, $metrics, $sort_metric, $filter, $start_date, $end_date, $start_index, $max_results);
foreach($ga->getResults() as $result)
{
echo '<td>' . $result->getDate() . '</td>';
echo '<td>' . $result->getVisits() . '</td>';
echo '<td>' . '?' . '</td>';
echo '<td>' . $result->getPageviews() . '</td>';
echo '</tr>';
}
echo "</table>";
歡迎堆棧溢出。雖然這可能會回答這個問題,但提供更多關於如何回答問題的信息會使這個問題更好。 – 2016-04-06 12:29:50