使用Google API自动执行电子表格的共享过程

时间:2018-12-25 05:54:21

标签: python google-api google-drive-api pydrive

我使用pyDrive在Google驱动器中上传了一个* .xlsx文件

drive = GoogleDrive(gauth)
file_drive = drive.CreateFile({'title':'newfile.xlsx'})
file_drive.SetContentFile('./temp.xlsx') 
temp = file_drive.Upload()

现在要编辑我正在使用gspread的电子表格

import gspread
from oauth2client.service_account import ServiceAccountCredentials

scope =['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']
creds = ServiceAccountCredentials.from_json_keyfile_name('./testProject-9d72869365a0.json', scope)
gc = gspread.authorize(creds) 
ss = gc.open('newfile')

但是打开电子表格,我需要将电子表格共享到客户电子邮件,如何使用API​​即与客户电子邮件共享google电子表格。无需使用浏览器将文件手动共享到客户端电子邮件中

0 个答案:

没有答案