google-api-nodejs-client icon indicating copy to clipboard operation
google-api-nodejs-client copied to clipboard

Youtube V3 Data API - Channels.list function not fetching all the channels

Open dpram17 opened this issue 4 years ago • 7 comments

Hi, I am trying to get a list of youtube channels under one google account. But the api returns only one channel, although I have two channels inside my google account. Is there a way to get all the channels under one google account ? Is there any suggested workaround to this ? I have seen posts saying this is not possible, is this same now ?

Thanks

const service = google.youtube({ version: 'v3', headers: { Authorization: Bearer ${user.youtubeToken}}}); const result = service.channels.list({part: 'snippet,contentDetails,statistics', mine: true});

dpram17 avatar May 17 '21 20:05 dpram17