2009-11-25 16:00

[PHP] 取得 Google Analytics 的統計資料

這裡我使用GAPI(google-analytics-php-interface)這個工具來取得 Google Analytics 的統計資料

如果不想使用這個工具取得資料,Google Analytics 也有 Protocol 的連接教學 Data Export API - Protocol

在取得資料的過程中,我在一個觀念上問題花了不少時間,主要是下面這兩個參數上的設定:
  • dimensions : 特性類似 SQL 的 GROUP BY
  • metrics : 類似 SQL SELECT 的資料欄位

其他的資料欄位:Dimensions & Metrics Reference


工具的連結範例:
  1. <?php 
  2. require_once('gapi.class.php'); 
  3.  
  4. /*建立與帳戶的連結*/ 
  5. $ga = new gapi('email@yourdomain.com','password'); 
  6.  
  7.  
  8. /*取得統計報告*/ 
  9. $ga->requestReportData( 
  10.    145141242, 
  11.    array('browser','browserVersion'), 
  12.    array('pageviews','visits') 
  13. ); 
  14.  
  15. foreach($ga->getResults() as $result){ 
  16.    echo $result; 
  17.    echo 'Pageviews:',$result->getPageviews(); 
  18.    echo 'Visits:',$result->getVisits(); 
  19. } 
  20.  
  21. echo 'Total pageviews:',$ga->getPageviews();  
  22. echo 'total visits:',$ga->getVisits(); 


函數的參數說明:
  1. <?php 
  2. requestReportData( 
  3.    $report_id, 
  4.    $dimensions, 
  5.    $metrics, 
  6.    $sort_metric=null, 
  7.    $filter=null, 
  8.    $start_date=null, 
  9.    $end_date=null, 
  10.    $start_index=1, 
  11.    $max_results=30 
  12. ) 

屬性型態描述範例
$report_idString統計報告的ID1892302
$dimensionsArray尺寸欄位,類似 SQL 的群組array('browser')
$metricsArray結果欄位,類似 SQL 的顯示欄位array('pageviews')
$sort_metricArray(選擇性)資料排序依據,"visits" 為 ASC,"-visits" 為 DESCarray('-visits')
$filterString(選擇性)過濾的邏輯條件 
$start_dateString(選擇性)報告的起始時間'YYYY-MM-DD''2009-04-30'
$end_dateString(選擇性)報告的起始時間'YYYY-MM-DD''2009-06-30'
$start_indexInt(選擇性)資料的起始指標1
$max_resultsInt(選擇性)資料的起始指標.最大 1000 筆30

0 回應: