YouTube বিশ্লেষণ পরিষেবা

YouTube Analytics পরিষেবা আপনাকে অ্যাপ স্ক্রিপ্টে YouTube Analytics API ব্যবহার করার অনুমতি দেয়। এই API ব্যবহারকারীদের YouTube ভিডিও এবং চ্যানেলের জন্য দেখার পরিসংখ্যান, জনপ্রিয়তা মেট্রিক্স এবং জনসংখ্যা সংক্রান্ত তথ্য পুনরুদ্ধার করার ক্ষমতা দেয়।

রেফারেন্স

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

কোডের উদাহরণ

নীচের নমুনা কোডটি YouTube Analytics API-এর সংস্করণ 2 ব্যবহার করে, সেইসাথে YouTube ডেটা API-এর সংস্করণ 3 ব্যবহার করে , যা আপনি Apps স্ক্রিপ্টে YouTube পরিষেবার মাধ্যমে অ্যাক্সেস করতে পারেন৷

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

রিপোর্ট তৈরি করুন

এই ফাংশনটি একটি চ্যানেলের ভিডিওর জন্য দৈনিক ভিউ সংখ্যা, দেখার সময় মেট্রিক্স এবং নতুন-সাবস্ক্রাইবার সংখ্যা সহ একটি স্প্রেডশীট তৈরি করে।

advanced/youtubeAnalytics.gs
/**
 * Creates a spreadsheet containing daily view counts, watch-time metrics,
 * and new-subscriber counts for a channel's videos.
 */
function createReport() {
  // Retrieve info about the user's YouTube channel.
  const channels = YouTube.Channels.list('id,contentDetails', {
    mine: true
  });
  const channelId = channels.items[0].id;

  // Retrieve analytics report for the channel.
  const oneMonthInMillis = 1000 * 60 * 60 * 24 * 30;
  const today = new Date();
  const lastMonth = new Date(today.getTime() - oneMonthInMillis);

  const metrics = [
    'views',
    'estimatedMinutesWatched',
    'averageViewDuration',
    'subscribersGained'
  ];
  const result = YouTubeAnalytics.Reports.query({
    ids: 'channel==' + channelId,
    startDate: formatDateString(lastMonth),
    endDate: formatDateString(today),
    metrics: metrics.join(','),
    dimensions: 'day',
    sort: 'day'
  });

  if (!result.rows) {
    console.log('No rows returned.');
    return;
  }
  const spreadsheet = SpreadsheetApp.create('YouTube Analytics Report');
  const sheet = spreadsheet.getActiveSheet();

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

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

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

/**
 * Converts a Date object into a YYYY-MM-DD string.
 * @param {Date} date The date to convert to a string.
 * @return {string} The formatted date.
 */
function formatDateString(date) {
  return Utilities.formatDate(date, Session.getScriptTimeZone(), 'yyyy-MM-dd');
}

/**
 * Formats a column name into a more human-friendly name.
 * @param {string} columnName The unprocessed name of the column.
 * @return {string} The formatted column name.
 * @example "averageViewPercentage" becomes "Average View Percentage".
 */
function formatColumnName(columnName) {
  let name = columnName.replace(/([a-z])([A-Z])/g, '$1 $2');
  name = name.slice(0, 1).toUpperCase() + name.slice(1);
  return name;
}