4

我想通过后台 cron 作业将来自谷歌分析的数据提取到自己的数据库中,而无需用户每次都进行身份验证。

如前所述,我确实知道如何通过用户交互获取 Google Analytics OAuth 访问令牌。使用 OAuth 将不起作用,因为它需要用户交互。根据Google Analytics API Reference,OAuth 以及访问令牌可用于在每个会话基础上访问页面的统计信息一次。但是,我正在寻找一种持久的方法来在后台服务中实现这一点。

如何在没有用户身份验证的情况下访问谷歌分析或获得一个永不过期的访问令牌?

4

1 回答 1

4

假设有问题的帐户是您自己的,您可以使用服务帐户。确保您在帐户级别向 Google 分析帐户授予服务帐户电子邮件地址的读取权限,这样它将能够读取您的数据。

<?php
session_start();
require_once 'Google/Client.php';
require_once 'Google/Service/Analytics.php';

/************************************************
  The following 3 values an befound in the setting
  for the application you created on  Google 
  Developers console.
  The Key file should be placed in a location
  that is not accessable from the web. outside of 
  web root.

  In order to access your GA account you must
  Add the Email address as a user at the 
  ACCOUNT Level in the GA admin. 
 ************************************************/
$client_id = '1046123799103-nk421gjc2v8mlr2qnmmqaak04ntb1dbp.apps.googleusercontent.com';
$Email_address = '1046123799103-nk421gjc2v8mlr2qnmmqaak04ntb1dbp@developer.gserviceaccount.com';
$key_file_location = '629751513db09cd21a941399389f33e5abd633c9-privatekey.p12';

$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");

$key = file_get_contents($key_file_location);

// seproate additional scopes with a comma
$scopes ="https://www.googleapis.com/auth/analytics.readonly";  

$cred = new Google_Auth_AssertionCredentials(
    $Email_address,
    array($scopes),
    $key
    );

$client->setAssertionCredentials($cred);
if($client->getAuth()->isAccessTokenExpired()) {
    $client->getAuth()->refreshTokenWithAssertion($cred);
}

$service = new Google_Service_Analytics($client);  
$accounts = $service->management_accountSummaries->listManagementAccountSummaries();

//calulating start date
$date = new DateTime(date("Y-m-d"));
$date->sub(new DateInterval('P10D'));

//Adding Dimensions
$params = array('dimensions' => 'ga:userType');
// requesting the data
$data = $service->data_ga->get("ga:78110423", $date->format('Y-m-d'),  date("Y-m-d"), "ga:users,ga:sessions", $params );


?><html>
<?php echo $date->format('Y-m-d') . " - ".date("Y-m-d"). "\n";?>
<table>
<tr>
<?php
//Printing column headers
foreach($data->getColumnHeaders() as $header){  
    print "<td>".$header['name']."</td>";   
}
?>
</tr>
<?php
//printing each row.
foreach ($data->getRows() as $row) {    
    print "<tr><td>".$row[0]."</td><td>".$row[1]."</td><td>".$row[2]."</td></tr>";  
}

//printing the total number of rows
?>
<tr><td colspan="2">Rows Returned <?php print $data->getTotalResults();?> </td></tr>
</table>
</html>
<?php

?>

使用 PHP从教程Google 服务帐户中提取的代码

如果这不是您的帐户,那么您可以使用普通的 Oauth2 方法要求用户对您进行一次身份验证,然后使用刷新令牌您将能够访问数据。使用上一个问题中的代码。

于 2014-10-28T10:09:52.717 回答