PHP-仅使用API​​密钥从Google Analytics(分析)中获取数据

时间:2019-04-30 14:51:53

标签: php google-analytics

我的问题是,是否可以仅使用API​​密钥(只读)从Google Analytics(分析)中获取数据?我找不到方法。

我完全迷失了文档,所有示例均无用。 请帮助我找到正确的方法...

我已经安装了“ google-api-php-client ”(https://github.com/googleapis/google-api-php-client): 撰写者需要google / apiclient:“ ^ 2.0”

我正在尝试获取此数据: https://ga-dev-tools.appspot.com/query-explorer/?start-date=30daysAgo&end-date=yesterday&metrics=ga%3Ausers&dimensions=ga%3Adimension5

以最基本的示例为例:

<?php

require_once 'vendor/autoload.php';

$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");
$client->setDeveloperKey("<MY API KEY>");

$service = new Google_Service_Books($client);
$optParams = array('filter' => 'free-ebooks');
$results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);

foreach ($results as $item) {
  echo $item['volumeInfo']['title'], "<br /> \n";
}

0 个答案:

没有答案