谁能告诉我如何将共享驱动器的项目ID放入GoogleAuth()?
我尝试了下面的代码,但是没有一个起作用:
auth = GoogleAuth({'id': 'projectid'})
auth = GoogleAuth({'project_id': 'projectid'})
auth = GoogleAuth({'project': 'projectid'})
下面是我的代码段,我试图将.csv文件上传到共享驱动器。我假设项目ID是URL中最后一个“ /”之后的字符串,该字符串在我们双击所需的驱动器文件夹后出现。
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
auth = GoogleAuth()
drive = GoogleDrive(gauth)
file1 = drive.CreateFile()
file1.SetContentFile('file_name.csv')
file1.Upload()`