前提・実現したいこと
GoogleAppsScriptを用いてYouTube Analytics APIを使用し自分のYouTubeブランドアカウントチャンネルの動画データを取得したいのですが、Forbiddenエラーが発生してしまいます。
発生している問題・エラーメッセージ
GoogleJsonResponseException: API call to youtubeAnalytics.reports.query failed with error: Forbidden
該当のソースコード
gs
1function createReport() { 2 var channelId = '自分のブランドチャンネルのID'; 3 4 var oneMonthInMillis = 1000 * 60 * 60 * 24 * 30; 5 var today = new Date(); 6 var lastMonth = new Date(today.getTime() - oneMonthInMillis); 7 8 var metrics = [ 9 'views', 10 'averageViewDuration', 11 ]; 12 var result = YouTubeAnalytics.Reports.query({ 13 ids: 'channel==' + channelId, 14 startDate: formatDateString(lastMonth), 15 endDate: formatDateString(today), 16 metrics: metrics.join(','), 17 dimensions: 'day', 18 sort: 'day' 19 }); 20 21 if (result.rows) { 22 var spreadsheet = SpreadsheetApp.openById(""); 23 var sheet = spreadsheet.getSheetByName("sheet1"); 24 25 var headers = result.columnHeaders.map(function(columnHeader) { 26 return formatColumnName(columnHeader.name); 27 }); 28 sheet.appendRow(headers); 29 30 // Append the results. 31 sheet.getRange(2, 1, result.rows.length, headers.length).setValues(result.rows); 32 33 Logger.log('Report spreadsheet created: %s', spreadsheet.getUrl()); 34 } else { 35 Logger.log('No rows returned.'); 36 } 37} 38 39function formatDateString(date) { 40 return Utilities.formatDate(date, Session.getScriptTimeZone(), 'yyyy-MM-dd'); 41} 42 43function formatColumnName(columnName) { 44 var name = columnName.replace(/([a-z])([A-Z])/g, '$1 $2'); 45 name = name.slice(0, 1).toUpperCase() + name.slice(1); 46 return name; 47}
試したこと
・ ブランドアカウントでのYouTube Analytics APIについての情報は海外の情報も出てきませんでした。
・ metricsをviewsのみにしても取得できませんでした。
・ 自分のアカウントに3つYouTubeチャンネルがあり、内2つがブランドアカウントなのですがどちらも取得できませんでした。
ブランドアカウントでは無いアカウントの情報は上記のコードで取得できました。
・ 下記サイトの情報をもとにaccess_tokenを作成し、YouTubeAnalytics.Reports.queryのパラメーターにキー名「access_token」にて追加し試してみましたが、結果は変わりませんでした。
https://stackoverflow.com/questions/41016537/youtube-apis-access-mutiple-youtube-channels-brand-accounts-using-google-adm
補足情報(FW/ツールのバージョンなど)
YouTube Analytics API は v2 を使用しています。
あなたの回答
tips
プレビュー