I'm using Zend_Gdata_Spreadsheets to interact with a Google Docs spreadsheet in PHP. I need to modify many cells in the spreadsheet, so I use the updateCell() method:
Example: $spreadsheetService->updateCell(1, 1, "hello", $spreadSheetKey, $worksheetId);
My code works fine for updating a cell. But I need to update many cells (usually 20 or 30 cells) and if I update them one by one (using the code above), it makes a separate api call for each cell update. This can take a LONG time to run if I have lots of cells to udpate.
Is there a way for me to update a batch of cells all at once so it's more efficient?