I try to use Google Spreadsheets API and Google Documents List API, butI can't understand how to add new generated form scratch spreadsheet.
I find how to add empty spreadsheet (C#):
DocumentEntry entry = new DocumentEntry();
entry.Title.Text = title;
entry.Categories.Add(DocumentEntry.SPREADSHEET_CATEGORY);
DocumentEntry newEntry = documentsService.Insert(DocumentsListQuery.documentsBaseUri, entry);
But how to fill it by data? May be with updating cells with a batch request. But WorksheetEntry is needed for it. There is no way to get WorksheetEntry from DocumentEntry (it's only possible by worksheet searching in SpreadSheetFeed::Entries)
Is there any normal way to upload new generated spreadsheet?