【问题标题】:Google Analytics - Getting page view information for a URLGoogle Analytics - 获取 URL 的页面查看信息
【发布时间】:2019-07-29 22:13:29
【问题描述】:

(使用 Reporting API V4)每当我试图通过谷歌分析获取页面查看信息时,它似乎都没有正确过滤。例如,使用setOperator("BEGINS_WITH");setExpressions("/report"); 行,我希望只检索以 mywebsitename.com/report 开头的页面,但是它给了我各种各样的东西,例如以 /tag 和 /sponsor 开头的页面除了一堆以/report 开头的页面(但我不认为全部,实际上并不确定)。

在处理更具体的 URL 以及使用不同的运算符时,这仍然是一个问题。它总是返回我正在寻找的东西,但也返回一堆看起来无关的其他随机垃圾。我也尝试只使用正则表达式,但这仍然给出了类似的东西。

我觉得我的问题可能在于不完全了解所有各种对象的作用(特别是在 php 中),但我一直无法找到其中一些的答案。

我在这里能找到的最接近的答案是this,但我不确定我在做什么与这个人不同。我的意思是我并没有在本地使用 JSON 字符串,但是在 documentation from google 他们使用我正在使用的这种奇怪的函数语法。除此之外应该和我想的差不多。

这主要是来自herehere 的示例代码的组合。

<?php

// Load the Google API PHP Client Library.
require_once __DIR__ . '/vendor/autoload.php';


$analytics = initializeAnalytics();
//print_r($analytics);
$response = getReport($analytics);
//print_r($response);
printResults($response);


/**
 * Initializes an Analytics Reporting API V4 service object.
 *
 * @return An authorized Analytics Reporting API V4 service object.
 */
function initializeAnalytics()
{

  // Use the developers console and download your service account
  // credentials in JSON format. Place them in this directory or
  // change the key file location if necessary.
  $KEY_FILE_LOCATION = __DIR__ . '/service-account-credentials.json';

  // Create and configure a new client object.
  $client = new Google_Client();
  $client->setApplicationName("Hello Analytics Reporting");
  $client->setAuthConfig($KEY_FILE_LOCATION);
  $client->setScopes(['https://www.googleapis.com/auth/analytics.readonly']);
  $analytics = new Google_Service_AnalyticsReporting($client);

  return $analytics;
}


/**
 * Queries the Analytics Reporting API V4.
 *
 * @param service An authorized Analytics Reporting API V4 service object.
 * @return The Analytics Reporting API V4 response.
 */
function getReport($analytics) {

  // Replace with your view ID, for example XXXX.
  $VIEW_ID = "HIDDEN";

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

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

  //Create the dimensions dimension.
  $dimensions = new Google_Service_AnalyticsReporting_Dimension();
  $dimensions->setName("ga:pagePath");

  // Create the segment dimension.
  $segmentDimensions = new Google_Service_AnalyticsReporting_Dimension();
  $segmentDimensions->setName("ga:segment");

  // Create Dimension Filter.
  $dimensionFilter = new Google_Service_AnalyticsReporting_SegmentDimensionFilter();
  $dimensionFilter->setDimensionName("ga:pagePath");
  $dimensionFilter->setOperator("BEGINS_WITH");
  $dimensionFilter->setExpressions("/report");

  // Create Segment Filter Clause.
  $segmentFilterClause = new Google_Service_AnalyticsReporting_SegmentFilterClause();
  $segmentFilterClause->setDimensionFilter($dimensionFilter);

  // Create the Or Filters for Segment.
  $orFiltersForSegment = new Google_Service_AnalyticsReporting_OrFiltersForSegment();
  $orFiltersForSegment->setSegmentFilterClauses(array($segmentFilterClause));

  // Create the Simple Segment.
  $simpleSegment = new Google_Service_AnalyticsReporting_SimpleSegment();
  $simpleSegment->setOrFiltersForSegment(array($orFiltersForSegment));

  // Create the Segment Filters.
  $segmentFilter = new Google_Service_AnalyticsReporting_SegmentFilter();
  $segmentFilter->setSimpleSegment($simpleSegment);

  // Create the Segment Definition.
  $segmentDefinition = new Google_Service_AnalyticsReporting_SegmentDefinition();
  $segmentDefinition->setSegmentFilters(array($segmentFilter));

  // Create the Dynamic Segment.
  $dynamicSegment = new Google_Service_AnalyticsReporting_DynamicSegment();
  $dynamicSegment->setSessionSegment($segmentDefinition);
  $dynamicSegment->setName("Sessions with path");

  // Create the Segments object.
  $segment = new Google_Service_AnalyticsReporting_Segment();
  $segment->setDynamicSegment($dynamicSegment);

  $request = new Google_Service_AnalyticsReporting_ReportRequest();
  $request->setViewId($VIEW_ID);
  $request->setDateRanges(array($dateRange));
  $request->setDimensions(array($dimensions, $segmentDimensions));
  $request->setSegments(array($segment));
  $request->setMetrics(array($metricss));

  // Create the GetReportsRequest object.
  $getReport = new Google_Service_AnalyticsReporting_GetReportsRequest();
  $getReport->setReportRequests(array($request));

  // Call the batchGet method.
  $body = new Google_Service_AnalyticsReporting_GetReportsRequest();
  $body->setReportRequests( array( $request) );
  $response = $analytics->reports->batchGet( $body );

  return $response;
}


/**
 * Parses and prints the Analytics Reporting API V4 response.
 *
 * @param An Analytics Reporting API V4 response.
 */
function printResults($reports) {
 // print_r("reports/n");
  //print_r($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($metrics); $j++) {
        $values = $metrics[$j]->getValues();
        for ($k = 0; $k < count($values); $k++) {
          $entry = $metricHeaders[$k];
          print($entry->getName() . ": " . $values[$k] . "\n");
        }
      }
    }
  }
}

这应该只是返回特定页面路径的查看次数。

【问题讨论】:

    标签: google-analytics google-analytics-api google-api-php-client


    【解决方案1】:

    您可以通过使用 Google_Service_AnalyticsReporting_DimensionFilterGoogle_Service_AnalyticsReporting_DimensionFilterClause

    避免示例中的详细代码

    举个例子

    ...
    
    //Create the Dimensions object.
    $dimension = new Google_Service_AnalyticsReporting_Dimension();
    $dimension->setName("ga:pagePath");
    
    // Create the DimensionFilter.
    $dimensionFilter = new Google_Service_AnalyticsReporting_DimensionFilter();
    $dimensionFilter->setDimensionName('ga:pagePath');
    $dimensionFilter->setOperator('BEGINS_WITH');
    $dimensionFilter->setExpressions(array('/report'));
    
    // Create the DimensionFilterClauses
    $dimensionFilterClause = new Google_Service_AnalyticsReporting_DimensionFilterClause();
    $dimensionFilterClause->setFilters(array($dimensionFilter));  
    
    ...
    
    $request->setDimensions(array($dimension));
    $request->setDimensionFilterClauses(array($dimensionFilterClause));
    

    【讨论】:

      猜你喜欢
      • 2013-10-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-07-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多