Graphic 3D
2D, 3D, game, games, online game, game development, game engine, programming, OpenGL, Open AI, math, graphics, design, graphic, graphics, game development, game engine, programming, web development, web art, web graphic, arts, tutorial, tutorials,
vineri, 17 aprilie 2026
Google Apps Script : ... youtube script for dashboard.
Today, I tested Google Apps Script to get data from youtube dashboard, because I make some streams on youtube and another social platforms.
The source code is large, but I will show this part to understand the basics:
function getChannelStats() {
const response = YouTube.Channels.list(
"snippet,statistics",
{ mine: true }
);
const ch = response.items[0];
return {
title: ch.snippet.title,
subs: Number(ch.statistics.subscriberCount),
views: Number(ch.statistics.viewCount),
videos: Number(ch.statistics.videoCount)
};
} ...
Posted by
Cătălin George Feștilă
Labels:
2026,
demo,
google,
Google Apps Script,
open source,
source code,
tutorial,
tutorials
joi, 16 aprilie 2026
miercuri, 15 aprilie 2026
marți, 14 aprilie 2026
Abonați-vă la:
Comentarii (Atom)
