我的问题是,是否可以仅使用API密钥(只读)从Google Analytics(分析)中获取数据?我找不到方法。
我完全迷失了文档,所有示例均无用。 请帮助我找到正确的方法...
我已经安装了“ google-api-php-client ”(https://github.com/googleapis/google-api-php-client): 撰写者需要google / apiclient:“ ^ 2.0”
以最基本的示例为例:
<?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";
}