0

以下のコードは、GoogleAnalyticsでユーザーアカウントを取得するためのものです。私の質問は、コードの代わりに何を置き換えるか、そして以下のga:AccountNameコードga:ProfileIdでサイトにログインしている訪問者を見つけることです。

/*
 * Retrieve 50 accounts with profile names, profile IDs, table IDs
 * for the authenticated user
 */

// Create the analytics service object
var analyticsService =
    new google.gdata.analytics.AnalyticsService('iSample_acctSample_v1.0');

// The feed URI that is used for retrieving the analytics accounts
var feedUri =
    'https://www.google.com/analytics/feeds/accounts/default?max-results=50';

// callback method to be invoked when getAccountFeed() returns data
var callback = function(result) {

  // An array of analytics feed entries
  var entries = result.feed.entry;

  // create an HTML Table using an array of elements
  var outputTable = ['<table>'];
  outputTable.push('<tr>',
    '<th>Account Name</th>',
    '<th>Profile Name</th>',
    '<th>Profile Id</th>',
    '<th>Table Id</th></tr>');

  // Iterate through the feed entries and add the data as table rows
  for (var i = 0; i < entries.length; i++) {
    var entry = entries[i];

    // add a row in the HTML Table array for each value
    var row = [
      entry.getPropertyValue('ga:AccountName'),
      entry.getTitle().getText(),
      entry.getPropertyValue('ga:ProfileId'),
      entry.getTableId().getValue()
    ].join('</td><td>');
    outputTable.push('<tr><td>', row, '</td></tr>'); 
  }
  outputTable.push('</table>');

  // print the generated table
  PRINT(outputTable.join(''));
}

// Error handler
var handleError = function(error) {
  PRINT(error);
}

// Submit the request using the analytics service object
analyticsService.getAccountFeed(feedUri, callback, handleError);
4

1 に答える 1

1

GoogleAnalyticsデータフィードクエリエクスプローラーを使用してAPIリクエストを作成できます。リンクは次のとおりです。アナリティクスデータに関連付けられたGoogleアカウントで認証する場合、クエリするプロファイルを選択して、関連付けられたプロファイルIDを確認できます。

アカウントIDは、Analyticsトラッキングコードの「UA-」に続き、-1(または-[任意の番号])サフィックスの前にある番号です。記憶から、AccountNameはGoogleアカウントに関連付けられたメールアドレスだと思います(@ gmail.comの場合もありますが、そうである必要はありません)。

于 2010-01-11T14:10:05.327 に答える