I try to download files from google drive on server (via python). For small numbers of file it is OK, but when I download more files, I get "permission deny: ("Sorry, but your computer or network may be sending automated queries, ...". OK, OK, understand. ). Python code (with ban from google) is based on this snippet: https://github.com/ndrplz/google-drive-downloader/blob/master/google_drive_downloader/google_drive_downloader.py
When I switch to Drive API (and create app with permission, scope, ...) I must request scope with read access to client's drive. But I can't do it. I only need download public file, I don't need read all others files. I can't make client scared.
Is it here some solution: I will make login to my google account and google drive allow to me download public file without ban, limitation, ...?
Thanks for any idea.