我正在使用Python。我需要使用Google API v4在電子表格中添加工作表。我可以使用帶有電子表格ID和addSheet請求的batchUpdate創建工作表(它返回shetId並創建空白工作表)。但是我怎樣才能在其中添加數據呢?使用Google API v4添加Google表單數據
data = {'requests': [
{
'addSheet':{
'properties':{'title': 'New sheet'}
}
}
]}
res = service.spreadsheets().batchUpdate(spreadsheetId=s_id, body=data).execute()
SHEET_ID = res['replies'][0]['addSheet']['properties']['sheetId']