YouTube 數據分析
透過集合功能整理內容 你可以依據偏好儲存及分類內容。
建立頻道報表
function runYoutubeAnalyticsReport() { // Get the list of all channels. var myChannels = YouTube.Channels.list('id', {mine: true}); // Pick the first available channel. var channel = myChannels.items[0]; var channelId = channel.id; // Set the dates for 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'); // See https://developers.google.com/youtube/analytics/v1/reports for // supported dimensions and metrics. var analyticsResponse = YouTubeAnalytics.Reports.query( 'channel==' + channelId, oneMonthAgoFormatted, todayFormatted, 'views,likes,dislikes,shares', { dimensions: 'day', sort: '-day' }); console.log(analyticsResponse); }
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-08-21 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-08-21 (世界標準時間)。"],[[["\u003cp\u003eThis script utilizes the YouTube Data API to generate a report for your YouTube channel.\u003c/p\u003e\n"],["\u003cp\u003eIt retrieves data from the past month, including daily views, likes, dislikes, and shares.\u003c/p\u003e\n"],["\u003cp\u003eThe report focuses on the performance of a single channel, prioritizing the first one found in your account if you have multiple.\u003c/p\u003e\n"],["\u003cp\u003eData is formatted for logging to the console, providing a raw overview of your channel's recent activity.\u003c/p\u003e\n"]]],[],null,["Create report for a channel \n\n```gdscript\nfunction runYoutubeAnalyticsReport() {\n // Get the list of all channels.\n var myChannels = YouTube.Channels.list('id', {mine: true});\n\n // Pick the first available channel.\n var channel = myChannels.items[0];\n var channelId = channel.id;\n\n // Set the dates for report.\n var today = new Date();\n var oneMonthAgo = new Date();\n oneMonthAgo.setMonth(today.getMonth() - 1);\n\n var todayFormatted = Utilities.formatDate(today, 'UTC', 'yyyy-MM-dd');\n var oneMonthAgoFormatted = Utilities.formatDate(oneMonthAgo, 'UTC',\n 'yyyy-MM-dd');\n\n // See https://developers.google.com/youtube/analytics/v1/reports for\n // supported dimensions and metrics.\n var analyticsResponse = YouTubeAnalytics.Reports.query(\n 'channel==' + channelId,\n oneMonthAgoFormatted,\n todayFormatted,\n 'views,likes,dislikes,shares',\n {\n dimensions: 'day',\n sort: '-day'\n });\n console.log(analyticsResponse);\n}\n```"]]