Generating a downloadable link for a private file uploaded in the Google drive
问题 Is it possible to generate the downloadable link for a private file uploaded in the google drive? I have tried with the files API and generated the 'webContent Link', but it is accessible only to the owner and the shared users. (Expecting a public link that can be shared with anyone) def file_info_drive(access_token, file_id): headers = {'Authorization': 'Bearer ' + access_token, "content-type": "application/json"} response = requests.get('https://www.googleapis.com/drive/v2/files/{file_id}',