List publicly shared files from google drive using service account key not getting public files
问题 I have been facing problem while coding that while using service account key and using drive.files.list API, i am not able to get files, though i have shared all the files publicly const { google } = require('googleapis'); const drive = google.drive('v3'); const jwtClient = new google.auth.JWT( client_email, null, private_key, ['https://www.googleapis.com/auth/drive'] ); jwtClient.authorize(function (err, tokens) { if (err) { console.log(err); return; } else { console.log("Successfully