In my NodeJS application, I use this code to get the videos for a specific channel:
var myOauth = 'my oauth object'; var channelId = 'my channel id'; youtube.search.list({ auth: myOauth, part: 'snippet', channelId: channelId, type:'video', order:'date', maxResults:50 }, function(err, response) { //do something here } );This solution works but the quota cost of each request is 100. https://developers.google.com/youtube/v3/docs/search/list
I want to get videos with other way like "playlistItems" where the quota cost is 1. https://developers.google.com/youtube/v3/docs/playlistItems/list