I was just given a large list of 500mb files in google drive. How would I go about queuing them for download on my local Linux machine?
I can't zip them all as a large download
I can't set them all to download at once
I can't be here all day to download them in small batches.
I see from documentation like wget/curl large file from google drive that the the api is depreciated from google drive and that we can't wget them.
So what I am looking for a way for sequentially download large files from a google drive, without having to manually click through the web browser to do so.
curl -H "Authorization: Bearer XXXXX" https://www.googleapis.com/drive/v3/files/YYYYY?alt=media -o ZZZZZ
where
XXXXX===> Access Token
YYYYY===> File ID
ZZZZZ===> File Name that will be saved
5. Tested on Linux ( Should also work on Mac ). Windows can try with PowerShell.
Reference: Drive REST API Documentation.