I am trying to use zend gdata to get the worksheets for a spreadsheet. I am able to get the list of worksheets using
$query = new Zend_Gdata_Spreadsheets_DocumentQuery();
$query->setSpreadsheetKey($key);
$feed = $spreadSheetService->getWorksheetFeed($query);
I was wondering how I could get worksheetId.
I appreciate any help.