2

特定の月の日付、訪問数、ユニーク ビジター数、ページビュー数をリストする非常にシンプルなカスタム レポートを Google アナリティクスで作成しています。

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('xx@xxxxxxxxx.com','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>";
4

3 に答える 3

0
$profile_id = "xxxxxxxx";
$report_id = "xxxxxxxx";
$dimensions = array('date');
$metrics = array('pageviews','visits','visitors');
$sort_metric = array('date'); 
$filter = null;
$start_date = '2013-02-01';
$end_date = '2013-02-28';
$start_index = 1;
$max_results = 10000;
于 2016-04-06T12:23:17.710 に答える