83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2021 Google LLC.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/* Google Analytics Data API sample quickstart application.
|
|
|
|
This application demonstrates the usage of the Analytics Data API using
|
|
service account credentials.
|
|
|
|
Before you start the application, please review the comments starting with
|
|
"TODO(developer)" and update the code to use the correct values.
|
|
|
|
Usage:
|
|
composer update
|
|
php quickstart.php
|
|
*/
|
|
|
|
// [START analytics_data_quickstart]
|
|
require 'vendor/autoload.php';
|
|
|
|
use Google\Analytics\Data\V1beta\Client\BetaAnalyticsDataClient;
|
|
use Google\Analytics\Data\V1beta\DateRange;
|
|
use Google\Analytics\Data\V1beta\Dimension;
|
|
use Google\Analytics\Data\V1beta\Metric;
|
|
use Google\Analytics\Data\V1beta\RunReportRequest;
|
|
|
|
/**
|
|
* TODO(developer): Replace this variable with your Google Analytics 4
|
|
* property ID before running the sample.
|
|
*/
|
|
$property_id = 'YOUR-GA4-PROPERTY-ID';
|
|
|
|
// [START analyticsdata_initialize]
|
|
// Using a default constructor instructs the client to use the credentials
|
|
// specified in GOOGLE_APPLICATION_CREDENTIALS environment variable.
|
|
$client = new BetaAnalyticsDataClient();
|
|
// [END analyticsdata_initialize]
|
|
|
|
// [START analyticsdata_run_report]
|
|
// Make an API call.
|
|
$request = (new RunReportRequest())
|
|
->setProperty('properties/' . $property_id)
|
|
->setDateRanges([
|
|
new DateRange([
|
|
'start_date' => '2020-03-31',
|
|
'end_date' => 'today',
|
|
]),
|
|
])
|
|
->setDimensions([new Dimension([
|
|
'name' => 'city',
|
|
]),
|
|
])
|
|
->setMetrics([new Metric([
|
|
'name' => 'activeUsers',
|
|
])
|
|
]);
|
|
$response = $client->runReport($request);
|
|
// [END analyticsdata_run_report]
|
|
|
|
// [START analyticsdata_run_report_response]
|
|
// Print results of an API call.
|
|
print 'Report result: ' . PHP_EOL;
|
|
|
|
foreach ($response->getRows() as $row) {
|
|
print $row->getDimensionValues()[0]->getValue()
|
|
. ' ' . $row->getMetricValues()[0]->getValue() . PHP_EOL;
|
|
// [END analyticsdata_run_report_response]
|
|
}
|
|
// [END analytics_data_quickstart]
|