aboutsummaryrefslogtreecommitdiff
path: root/src/server/youtubeApi/youtubeApiSample.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/youtubeApi/youtubeApiSample.js')
-rw-r--r--src/server/youtubeApi/youtubeApiSample.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/server/youtubeApi/youtubeApiSample.js b/src/server/youtubeApi/youtubeApiSample.js
index cf41a33e7..4fede08aa 100644
--- a/src/server/youtubeApi/youtubeApiSample.js
+++ b/src/server/youtubeApi/youtubeApiSample.js
@@ -23,8 +23,6 @@ module.exports.readApiKey = (callback) => {
module.exports.authorizedGetChannel = (apiKey) => {
//this didnt get called
- console.log("I get called ", apiKey);
- console.log(TOKEN_PATH);
// Authorize a client with the loaded credentials, then call the YouTube API.
authorize(JSON.parse(apiKey), getChannel);
}
@@ -157,7 +155,6 @@ function getSampleVideos(auth, args) {
return;
}
let videos = response.data.items;
- console.log('Videos found: ' + videos[0].id.videoId, " ", unescape(videos[0].snippet.title));
args.callBack(videos);
});
}
@@ -174,7 +171,6 @@ function getVideoDetails(auth, args) {
return;
}
let videoDetails = response.data.items;
- console.log('Video Details founds: ', videoDetails);
args.callBack(videoDetails);
});
} \ No newline at end of file