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

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

তথ্যসূত্র

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

নমুনা কোড

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

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

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

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

অ্যাডভান্সড/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;
}