get-channel-by-id.js
360 Bytes
var YouTube = require('../lib/youtube');
var config = require('./config');
var youTube = new YouTube();
youTube.setKey(config.key);
// Get "Marvel Entertainment" channel
youTube.getChannelById('UCvC4D8onUfXzvjTOM-dBfEA', function(error, result) {
if (error) {
console.log(error);
}
else {
console.log(JSON.stringify(result, null, 2));
}
});