Apps Script कोड के सैंपल

YouTube Analytics API के लिए नीचे दिए गए Apps Script कोड के नमूने उपलब्ध हैं. आप GitHub पर YouTube एपीआई कोड सैंपल रिपॉज़िटरी के apps-script फ़ोल्डर से इन कोड के सैंपल डाउनलोड कर सकते हैं.

YouTube Analytics के डेटा को Google Sheets में एक्सपोर्ट करना

यह फ़ंक्शन, पुष्टि किए गए उपयोगकर्ता के चैनल का डेटा फ़ेच करने के लिए, YouTube Analytics API का इस्तेमाल करता है. साथ ही, उपयोगकर्ता की Drive में, डेटा के साथ एक नई Google शीट बनाई जाती है.

इस नमूने का पहला हिस्सा, आसान YouTube Analytics एपीआई कॉल के बारे में बताता है. यह फ़ंक्शन, सबसे पहले, सक्रिय उपयोगकर्ता के चैनल आईडी को फ़ेच करता है. उस आईडी का इस्तेमाल करके, यह फ़ंक्शन पिछले 30 दिनों के व्यू, पसंद, नापसंद, और शेयर वापस पाने के लिए YouTube Analytics एपीआई कॉल करता है. एपीआई रिस्पॉन्स ऑब्जेक्ट में डेटा दिखाता है जिसमें 2D श्रेणी होती है.

नमूने का दूसरा हिस्सा स्प्रेडशीट बनाता है. यह स्प्रेडशीट पुष्टि किए गए उपयोगकर्ता के Google Drive में होती है. इसमें शीर्षक में 'YouTube रिपोर्ट' और तारीख की सीमा होती है. फ़ंक्शन, स्प्रेडशीट को एपीआई रिस्पॉन्स से पॉप्युलेट करता है. इसके बाद, उन कॉलम और पंक्तियों को लॉक करता है जो चार्ट ऐक्सिस को परिभाषित करती हैं. स्प्रेडशीट के लिए एक स्टैक किया गया कॉलम चार्ट जोड़ा जाता है.

function spreadsheetAnalytics() {
  // Get the channel ID
  var myChannels = YouTube.Channels.list('id', {mine: true});
  var channel = myChannels.items[0];
  var channelId = channel.id;

  // Set the dates for our report
  var today = new Date();
  var oneMonthAgo = new Date();
  oneMonthAgo.setMonth(today.getMonth() - 1);
  var todayFormatted = Utilities.formatDate(today, 'UTC', 'yyyy-MM-dd')
  var oneMonthAgoFormatted = Utilities.formatDate(oneMonthAgo, 'UTC', 'yyyy-MM-dd');

  // The YouTubeAnalytics.Reports.query() function has four required parameters and one optional
  // parameter. The first parameter identifies the channel or content owner for which you are
  // retrieving data. The second and third parameters specify the start and end dates for the
  // report, respectively. The fourth parameter identifies the metrics that you are retrieving.
  // The fifth parameter is an object that contains any additional optional parameters
  // (dimensions, filters, sort, etc.) that you want to set.
  var analyticsResponse = YouTubeAnalytics.Reports.query(
    'channel==' + channelId,
    oneMonthAgoFormatted,
    todayFormatted,
    'views,likes,dislikes,shares',
    {
      dimensions: 'day',
      sort: '-day'
    });

  // Create a new Spreadsheet with rows and columns corresponding to our dates
  var ssName = 'YouTube channel report ' + oneMonthAgoFormatted + ' - ' + todayFormatted;
  var numRows = analyticsResponse.rows.length;
  var numCols = analyticsResponse.columnHeaders.length;

  // Add an extra row for column headers
  var ssNew = SpreadsheetApp.create(ssName, numRows + 1, numCols);

  // Get the first sheet
  var sheet = ssNew.getSheets()[0];

  // Get the range for the title columns
  // Remember, spreadsheets are 1-indexed, whereas arrays are 0-indexed
  var headersRange = sheet.getRange(1, 1, 1, numCols);
  var headers = [];

  // These column headers will correspond with the metrics requested
  // in the initial call: views, likes, dislikes, shares
  for(var i in analyticsResponse.columnHeaders) {
    var columnHeader = analyticsResponse.columnHeaders[i];
    var columnName = columnHeader.name;
    headers[i] = columnName;
  }
  // This takes a 2 dimensional array
  headersRange.setValues([headers]);

  // Bold and freeze the column names
  headersRange.setFontWeight('bold');
  sheet.setFrozenRows(1);

  // Get the data range and set the values
  var dataRange = sheet.getRange(2, 1, numRows, numCols);
  dataRange.setValues(analyticsResponse.rows);

  // Bold and freeze the dates
  var dateHeaders = sheet.getRange(1, 1, numRows, 1);
  dateHeaders.setFontWeight('bold');
  sheet.setFrozenColumns(1);

  // Include the headers in our range. The headers are used
  // to label the axes
  var range = sheet.getRange(1, 1, numRows, numCols);
  var chart = sheet.newChart()
                   .asColumnChart()
                   .setStacked()
                   .addRange(range)
                   .setPosition(4, 2, 10, 10)
                   .build();
  sheet.insertChart(chart);

}