বিশ্লেষণ সেবা

অ্যানালিটিক্স পরিষেবা আপনাকে অ্যাপস স্ক্রিপ্টে Google Analytics ম্যানেজমেন্ট API এবং রিপোর্টিং API ব্যবহার করতে দেয়। এই APIগুলি অ্যানালিটিক্স ব্যবহারকারীদের তাদের অ্যাকাউন্টের গঠন সম্পর্কে তথ্য পেতে এবং এটি কীভাবে কাজ করছে সে সম্পর্কে প্রতিবেদন চালানোর ক্ষমতা দেয়।

রেফারেন্স

এই পরিষেবার বিস্তারিত তথ্যের জন্য, বিভিন্ন Google Analytics API-এর রেফারেন্স ডকুমেন্টেশন দেখুন:

Apps Script-এর সমস্ত উন্নত পরিষেবাগুলির মতো, Analytics পরিষেবাটি পাবলিক API হিসাবে একই বস্তু, পদ্ধতি এবং প্যারামিটার ব্যবহার করে৷ আরও তথ্যের জন্য, দেখুন কিভাবে পদ্ধতি স্বাক্ষর নির্ধারণ করা হয়

সমস্যাগুলি রিপোর্ট করতে এবং অন্যান্য সমর্থন খুঁজতে, সংশ্লিষ্ট সমর্থন পৃষ্ঠাগুলি দেখুন:

কোডের উদাহরণ

ম্যানেজমেন্ট এপিআই এর ভার্সন 3 এর নিচের নমুনা কোড।

তালিকা অ্যাকাউন্ট গঠন

নমুনাটি বর্তমান ব্যবহারকারী অ্যাক্সেস করতে পারে এমন সমস্ত Google Analytics অ্যাকাউন্ট, ওয়েব বৈশিষ্ট্য এবং প্রোফাইলগুলিকে তালিকাভুক্ত করে৷

advanced/analytics.gs
/**
 * Lists Analytics accounts.
 */
function listAccounts() {
  try {
    const accounts = Analytics.Management.Accounts.list();
    if (!accounts.items || !accounts.items.length) {
      console.log('No accounts found.');
      return;
    }

    for (let i = 0; i < accounts.items.length; i++) {
      const account = accounts.items[i];
      console.log('Account: name "%s", id "%s".', account.name, account.id);

      // List web properties in the account.
      listWebProperties(account.id);
    }
  } catch (e) {
    // TODO (Developer) - Handle exception
    console.log('Failed with error: %s', e.error);
  }
}

/**
 * Lists web properites for an Analytics account.
 * @param  {string} accountId The account ID.
 */
function listWebProperties(accountId) {
  try {
    const webProperties = Analytics.Management.Webproperties.list(accountId);
    if (!webProperties.items || !webProperties.items.length) {
      console.log('\tNo web properties found.');
      return;
    }
    for (let i = 0; i < webProperties.items.length; i++) {
      const webProperty = webProperties.items[i];
      console.log('\tWeb Property: name "%s", id "%s".',
          webProperty.name, webProperty.id);

      // List profiles in the web property.
      listProfiles(accountId, webProperty.id);
    }
  } catch (e) {
    // TODO (Developer) - Handle exception
    console.log('Failed with error: %s', e.error);
  }
}

/**
 * Logs a list of Analytics accounts profiles.
 * @param  {string} accountId     The Analytics account ID
 * @param  {string} webPropertyId The web property ID
 */
function listProfiles(accountId, webPropertyId) {
  // Note: If you experience "Quota Error: User Rate Limit Exceeded" errors
  // due to the number of accounts or profiles you have, you may be able to
  // avoid it by adding a Utilities.sleep(1000) statement here.
  try {
    const profiles = Analytics.Management.Profiles.list(accountId,
        webPropertyId);

    if (!profiles.items || !profiles.items.length) {
      console.log('\t\tNo web properties found.');
      return;
    }
    for (let i = 0; i < profiles.items.length; i++) {
      const profile = profiles.items[i];
      console.log('\t\tProfile: name "%s", id "%s".', profile.name,
          profile.id);
    }
  } catch (e) {
    // TODO (Developer) - Handle exception
    console.log('Failed with error: %s', e.error);
  }
}

একটি প্রতিবেদন চালান

নমুনাটি শীর্ষ 25টি কীওয়ার্ড এবং ট্রাফিক উত্স পুনরুদ্ধার করার জন্য একটি প্রতিবেদন চালায় এবং ফলাফলগুলিকে একটি নতুন স্প্রেডশীটে সংরক্ষণ করে৷

advanced/analytics.gs
/**
 * Runs a report of an Analytics profile ID. Creates a sheet with the report.
 * @param  {string} profileId The profile ID.
 */
function runReport(profileId) {
  const today = new Date();
  const oneWeekAgo = new Date(today.getTime() - 7 * 24 * 60 * 60 * 1000);

  const startDate = Utilities.formatDate(oneWeekAgo, Session.getScriptTimeZone(),
      'yyyy-MM-dd');
  const endDate = Utilities.formatDate(today, Session.getScriptTimeZone(),
      'yyyy-MM-dd');

  const tableId = 'ga:' + profileId;
  const metric = 'ga:visits';
  const options = {
    'dimensions': 'ga:source,ga:keyword',
    'sort': '-ga:visits,ga:source',
    'filters': 'ga:medium==organic',
    'max-results': 25
  };
  const report = Analytics.Data.Ga.get(tableId, startDate, endDate, metric,
      options);

  if (!report.rows) {
    console.log('No rows returned.');
    return;
  }

  const spreadsheet = SpreadsheetApp.create('Google Analytics Report');
  const sheet = spreadsheet.getActiveSheet();

  // Append the headers.
  const headers = report.columnHeaders.map((columnHeader) => {
    return columnHeader.name;
  });
  sheet.appendRow(headers);

  // Append the results.
  sheet.getRange(2, 1, report.rows.length, headers.length)
      .setValues(report.rows);

  console.log('Report spreadsheet created: %s',
      spreadsheet.getUrl());
}