本文へジャンプ

Google Analytics API:アカウント認証からPHPでPageViewsを取得するまで

Posted by MIO

「ブログ記事のPVランキングを週別で集計したい!」
「ブラウザ・デバイスごとのPVを集計したい!」

例えばこんなご要望。Analyticsのページを見ればかんたんに分かりますが、さらに取得したランキングをサイトに載せたいという場合もあったりします。
そんな時はAnalytics APIの出番です。
導入こそちょっと面倒なところがありますが、一度クリアしてしまえばプログラム自体はお手軽に実装できます。

以下にご説明する内容は基本的には公式ドキュメントに書かれていることですが、ページの行き来などで分かりづらい部分があるので、スクリーンショットを交えて分かりやすく説明します。

なお、注意点として、Analytics APIの仕様は今までも何度かアップデートされており、ここに書かれている情報が古くなる可能性や、ネットでググった別の情報がこの記事より古くて内容が合わない場合もあります。

STEP:1 認証情報の登録

API Consoleの設定

まずはGoogle API Consoleにログインします。

図1 - API Consoleの設定

左のメニューから「認証情報」に移動します。
「サービスアカウントキー」の右肩にある「サービスアカウントの管理」をクリックします。

図2 - API Consoleの設定

サービスアカウントの管理に移動したら、上部の「サービスアカウントを作成」をクリックします。

図3 - API Consoleの設定

モーダルウィンドウが立ち上がるので、サービスアカウントの情報を入力します。

「アカウント名」と「アカウントID」は任意の文字列でOKです。

「新しい秘密鍵の提供」にチェックを入れ、その下の「キーのタイプ」は「P12」を選択します。

さらにその下の「〜委任を有効にする」チェックボックスもチェック。
入力が完了したら「作成」ボタンをクリックします。

モーダルが閉じると同時に".p12"という拡張子の認証鍵ファイルが自動ダウンロードされるはずです。
これは後ほど必要になるので、とりあえず大事に保管しておきましょう。

図4 - API Consoleの設定

サービスアカウントの管理画面に戻ると、今登録したアカウントが一番下に追加されています。
そのアカウント情報の、「サービスアカウントID」列の文字列(foo@bar.iam.gserviceaccount.comといった形式のもの)をコピーしておきます。

Analyticsの設定

次にAnalytics側の設定画面に移動します。

図1 - Analyticsの設定

左上プルダウンで該当のプロパティを選択した上で、「ユーザー管理」を選択します。

「権限を付与するユーザー」に先程コピーしたアカウントIDをメールアドレスとして登録します。

メールアドレス入力欄の横にあるプルダウンはどこまでのアクセス権限が求められるかによって変わりますが、情報の取得だけなら「表示と分析」のままで問題ありません。

「追加」ボタンをクリックすれば、登録したサービスアカウントがAnalyticsAPIへの接続権限をゲットです。

STEP:2 PHPライブラリの入手

公式のPHPライブラリファイルは、git cloneするかGitHubからダウンロードします。

  1. git clone -b v1-master https://github.com/google/google-api-php-client.git

入手したファイルをディレクトリごとPHPプログラムを設置するサーバディレクトリの配下にアップロードします。

さらに、このディレクトリと並列に、STEP:1で保管しておいた.p12ファイルをアップロードしておきます。
これでやっと、Analytics APIにアクセスしてあんなことやこんなことをする準備が整いました

STEP:3 サンプルプログラムの実行

STEP:2でライブラリ一式や.p12ファイルを置いたディレクトリに、analytics.phpというサンプルプログラムを設置してみましょう。

公式ドキュメントに親切なサンプルコードが紹介されています。

  1. function getService()
  2. {
  3. // Creates and returns the Analytics service object.
  4. // Load the Google API PHP Client Library.
  5. require_once 'google-api-php-client/src/Google/autoload.php';
  6. // Use the developers console and replace the values with your
  7. // service account email, and relative location of your key file.
  8. $service_account_email = '<Replace with your service account email address.>';
  9. $key_file_location = '<Replace with /path/to/generated/client_secrets.p12>';
  10. // Create and configure a new client object.
  11. $client = new Google_Client();
  12. $client->setApplicationName("HelloAnalytics");
  13. $analytics = new Google_Service_Analytics($client);
  14. // Read the generated client_secrets.p12 key.
  15. $key = file_get_contents($key_file_location);
  16. $cred = new Google_Auth_AssertionCredentials(
  17. $service_account_email,
  18. array(Google_Service_Analytics::ANALYTICS_READONLY),
  19. $key
  20. );
  21. $client->setAssertionCredentials($cred);
  22. if($client->getAuth()->isAccessTokenExpired()) {
  23. $client->getAuth()->refreshTokenWithAssertion($cred);
  24. }
  25. return $analytics;
  26. }
  27. function getFirstprofileId(&$analytics) {
  28. // Get the user's first view (profile) ID.
  29. // Get the list of accounts for the authorized user.
  30. $accounts = $analytics->management_accounts->listManagementAccounts();
  31. if (count($accounts->getItems()) > 0) {
  32. $items = $accounts->getItems();
  33. $firstAccountId = $items[0]->getId();
  34. // Get the list of properties for the authorized user.
  35. $properties = $analytics->management_webproperties
  36. ->listManagementWebproperties($firstAccountId);
  37. if (count($properties->getItems()) > 0) {
  38. $items = $properties->getItems();
  39. $firstPropertyId = $items[0]->getId();
  40. // Get the list of views (profiles) for the authorized user.
  41. $profiles = $analytics->management_profiles
  42. ->listManagementProfiles($firstAccountId, $firstPropertyId);
  43. if (count($profiles->getItems()) > 0) {
  44. $items = $profiles->getItems();
  45. // Return the first view (profile) ID.
  46. return $items[0]->getId();
  47. } else {
  48. throw new Exception('No views (profiles) found for this user.');
  49. }
  50. } else {
  51. throw new Exception('No properties found for this user.');
  52. }
  53. } else {
  54. throw new Exception('No accounts found for this user.');
  55. }
  56. }
  57. function getResults(&$analytics, $profileId) {
  58. // Calls the Core Reporting API and queries for the number of sessions
  59. // for the last seven days.
  60. return $analytics->data_ga->get(
  61. 'ga:' . $profileId,
  62. '7daysAgo',
  63. 'today',
  64. 'ga:sessions');
  65. }
  66. function printResults(&$results) {
  67. // Parses the response from the Core Reporting API and prints
  68. // the profile name and total sessions.
  69. if (count($results->getRows()) > 0) {
  70. // Get the profile name.
  71. $profileName = $results->getProfileInfo()->getProfileName();
  72. // Get the entry for the first entry in the first row.
  73. $rows = $results->getRows();
  74. $sessions = $rows[0][0];
  75. // Print the results.
  76. print "First view (profile) found: $profileName\n";
  77. print "Total sessions: $sessions\n";
  78. } else {
  79. print "No results found.\n";
  80. }
  81. }
  82. $analytics = getService();
  83. $profile = getFirstProfileId($analytics);
  84. $results = getResults($analytics, $profile);
  85. printResults($results);

6行目のrequire_onceのところを、設置したライブラリのパスに応じて書き換えます。

8行目の$service_account_emailの中身はSTEP:1,2で登場したアカウントID(メールアドレス)を入力します。

次の行の$key_file_locationにはアップロードした.p12ファイルのパスを入力。

すべてうまく行っていれば、このanalytics.phpを実行すると過去7日間のサイト全体のPV数が表示されるはずです。
あとは60行目の部分の引数に色々な条件を設定すれば、ディレクトリやページごとのPVランキングなど、様々な情報にアクセスできます。

引数の設定については公式リファレンスとにらめっこになりますが、これまた設定方法が少し難解な部分があるので、また別の機会にでも。

Recent Entries
MD EVENT REPORT
What's Hot?