2017-09-04 254 views
0

獲得網頁瀏覽,我能夠從谷歌分析API運行德「你好」的應用程序:谷歌Analytics(分析)API - 通過URL

function getFirstProfileId($analytics) { 
    // Get the user's first view (profile) ID. 

    // Get the list of accounts for the authorized user. 
    $accounts = $analytics->management_accounts->listManagementAccounts(); 

    if (count($accounts->getItems()) > 0) { 
     $items = $accounts->getItems(); 
     $firstAccountId = $items[0]->getId(); 

     // Get the list of properties for the authorized user. 
     $properties = $analytics->management_webproperties 
       ->listManagementWebproperties($firstAccountId); 

     if (count($properties->getItems()) > 0) { 
      $items = $properties->getItems(); 
      $firstPropertyId = $items[0]->getId(); 

      // Get the list of views (profiles) for the authorized user. 
      $profiles = $analytics->management_profiles->listManagementProfiles($firstAccountId, $firstPropertyId); 

      if (count($profiles->getItems()) > 0) { 
       $items = $profiles->getItems(); 

       // Return the first view (profile) ID. 
       return $items[0]->getId(); 

      } else { 
       throw new Exception('No views (profiles) found for this user.'); 
      } 
     } else { 
      throw new Exception('No properties found for this user.'); 
     } 
    } else { 
     throw new Exception('No accounts found for this user.'); 
    } 
} 

function getResults($analytics, $profileId) { 
    // Calls the Core Reporting API and queries for the number of sessions 
    // for the last seven days. 
    return $analytics->data_ga->get(
     'ga:' . $profileId, 
     '7daysAgo', 
     'today', 
     'ga:sessions' 
    ); 
} 

返回的(全)賬戶的頁面訪問量。 我想獲得的頁面瀏覽量(整個範圍)特定網址

我試圖找出如何做到這一點,但最similar page,我發現,似乎是用不同的語法編寫。所以我不知道如何在當前應用中輸入這些參數。

有什麼想法?

- 編輯 -

欲瞭解更多信息,以前的代碼,打印:

但這碼(與鏈接的 「語法」 我之前提供)

function getReport($analytics) { 

    // Replace with your view ID, for example XXXX. 
    $VIEW_ID = "40xxxyyy9"; // I got it from The Google Account Explorer 

    // Create the DateRange object. 
    $dateRange = new Google_Service_AnalyticsReporting_DateRange(); 
    $dateRange->setStartDate("7daysAgo"); 
    $dateRange->setEndDate("today"); 

    // Create the Metrics object. 
    $sessions = new Google_Service_AnalyticsReporting_Metric(); 
    $sessions->setExpression("ga:sessions"); 
    $sessions->setAlias("sessions"); 

    // Create the ReportRequest object. 
    $request = new Google_Service_AnalyticsReporting_ReportRequest(); 
    $request->setViewId($VIEW_ID); 
    $request->setDateRanges($dateRange); 
    $request->setMetrics(array($sessions)); 

    $body = new Google_Service_AnalyticsReporting_GetReportsRequest(); 
    $body->setReportRequests(array($request)); 
    return $analytics->reports->batchGet($body); 
} 

function printResults($reports) { 
    for ($reportIndex = 0; $reportIndex < count($reports); $reportIndex++) { 
    $report = $reports[ $reportIndex ]; 
    $header = $report->getColumnHeader(); 
    $dimensionHeaders = $header->getDimensions(); 
    $metricHeaders = $header->getMetricHeader()->getMetricHeaderEntries(); 
    $rows = $report->getData()->getRows(); 

    for ($rowIndex = 0; $rowIndex < count($rows); $rowIndex++) { 
     $row = $rows[ $rowIndex ]; 
     $dimensions = $row->getDimensions(); 
     $metrics = $row->getMetrics(); 
     for ($i = 0; $i < count($dimensionHeaders) && $i < count($dimensions); $i++) { 
     print($dimensionHeaders[$i] . ": " . $dimensions[$i] . "\n"); 
     } 

     for ($j = 0; $j < count($metricHeaders) && $j < count($metrics); $j++) { 
     $entry = $metricHeaders[$j]; 
     $values = $metrics[$j]; 
     print("Metric type: " . $entry->getType() . "\n"); 
     for ($valueIndex = 0; $valueIndex < count($values->getValues()); $valueIndex++) { 
      $value = $values->getValues()[ $valueIndex ]; 
      print($entry->getName() . ": " . $value . "\n"); 
     } 
     } 
    } 
    } 
} 

打印出來:

Uncaught exception 'Google_Service_Exception' with message '{ "error": { "code": 403, "message": "Google Analytics Reporting API has not been used in project api-project-395xxxxxxx2105 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/analyticsreporting.googleapis.com/overview?project=api-project-395xxxxxxx2105 then retry. 

如果我按照控制檯鏈接到我的項目。它讓我知道,已啓用(否則問題中的第一個代碼不應該工作)

+0

這實際上是一種不同的語法,因爲它們是Google Analytics API的兩個不同版本(v3與v4)。它們需要不同語法的不同API客戶端。 v3有點容易理解,v4提供了更多(直方圖,樞軸等)。爲了將來證明你可能想考慮使用v4。 –

回答

3

您的示例實際上返回會話的數量,而不是瀏覽量。因此,要獲取Url的綜合瀏覽量,您需要a)將ga:sessions更改爲ga:pageViews,並b)應用將數據限制到預期Url的過濾器。

過濾器可以通過將其作爲可選參數的陣列的一部分被應用,所以你需要改變你的功能位(this basically taken from the documentation):

function getResults($analytics, $profileId) { 

    $optParams = array(
      'filters' => 'ga:[email protected]/my/url' 
    ); 

    return $analytics->data_ga->get(
     'ga:' . $profileId, 
     '7daysAgo', 
     'today', 
     'ga:pageViews', 
     $optParams 
    ); 
} 

IIRC [email protected]應該是部分匹配一個過濾器(或者查閱文檔),當然你需要把「/ my/url」改成你的實際URL。

另請注意我對不同API版本的評論。

+0

是的!這似乎工作!如何獲得整個現有的日期範圍,麪糰? –

+1

沒有「全選」命令,您需要將「7daysAgo」替換爲開始GA帳戶的日期。 –