I've installed the latest
Google Data API for .Net.
But I cannot figure out how to create a spreadsheet using C# code.
It's not included in the sample programs.
I've tried this:
SpreadsheetsService ss = new SpreadsheetsService("Spreadsheet Example");
ss.setUserCredentials("
[email protected]", "password");
SpreadsheetEntry se = new SpreadsheetEntry();
se.Title.Text = "new";
ss.Insert(new Uri("http://spreadsheets.
google.com/feeds/spreadsheets/private/full"), se);
However, It doesn't work!
Is there some way to do this job?
Thank you!