簡體   English   中英

如何獲取Google Analytics(分析)數據?

[英]How can I reach google analytics datas?

我的目標是在我網站的標題上顯示Google Analytics(分析)數據。 到目前為止,這就是我所擁有的(來自googleApiPhPClient / examples / analytics:

require_once 'library/GoogleApiPhpClient/apiClient.php';
$client = new apiClient();
$client->setApplicationName("Google Analytics PHP Starter Application");

// Visit https://code.google.com/apis/console?api=analytics to generate your
// client id, client secret, and to register your redirect uri.
 $client->setClientId('aaa');
 $client->setClientSecret('bbb_gK');
 $client->setRedirectUri('ccc');
 $client->setDeveloperKey('dd');

require_once ('contrib/apiAnalyticsService.php');
$service = new apiAnalyticsService($client);

if (isset($_GET['logout'])) {
  unset($_SESSION['token']);
}

if (isset($_GET['code'])) {
  $client->authenticate();
  $_SESSION['token'] = $client->getAccessToken();
  $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
  header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}

if (isset($_SESSION['token'])) {
  $client->setAccessToken($_SESSION['token']);
}

if ($client->getAccessToken()) {
  $props = $service->management_webproperties->listManagementWebproperties("~all");
  print "<h1>Web Properties</h1><pre>" . print_r($props, true) . "</pre>";

  $accounts = $service->management_accounts->listManagementAccounts();
  print "<h1>Accounts</h1><pre>" . print_r($accounts, true) . "</pre>";

  $segments = $service->management_segments->listManagementSegments();
  print "<h1>Segments</h1><pre>" . print_r($segments, true) . "</pre>";

  $goals = $service->management_goals->listManagementGoals("~all", "~all", "~all");
  print "<h1>Segments</h1><pre>" . print_r($goals, true) . "</pre>";

  $_SESSION['token'] = $client->getAccessToken();
} else {
  $authUrl = $client->createAuthUrl();
  print "<a class='login' href='$authUrl'>Connect Me!</a>";
}

但這只會刪除“連接我”鏈接。 反正以某種正確的方式獲取分析數據?

我一直在使用此code.google.com/p/gapi-google-analytics-php-interface,該界面僅需要google帳戶的用戶名和密碼即可正常運行

a sample code of mine where im checking visits $ga->requestReportData($ga_profile_id,array('browser','browserVersion','country'‌​),array('pageviews','visits'),null,"country==USA",$yesterday,$todate); 

登錄帳戶時,選擇您已經為網站創建的配置文件。 當您單擊它時,該網址將類似於google.com/analytics/web/#report/visitors-overview/…,因此ga_profile_id將是網址中“ p”之后的那個。獲取此個人資料ID

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM