We want to gather the info from a google spreadsheet, and are following the code samples given in the Google Apps Platform help.
Using that code, we found the right spreadsheet and the right worksheet (the Debug
line confirms it to be the right worksheet - there are only two in the whole account). However, when it comes to fetching the data from the rows, it comes back blank. So I tried to discover the number of rows, and the count comes back 0, which explains why there was no text forthcoming.
So what am I missing?
Debug.WriteLine("Worksheet Name=" + worksheet.Title.Text);
// Iterate through each row, printing its cell values.
foreach (ListEntry row in listFeed.Entries){
Debug.WriteLine("thisrow=" + row.Title.Text);
}
Debug.WriteLine("Number of rows=" + listFeed.Entries.Count);
P.S. I've been to this wonderful thread, but it doesn't mention list-based feeds - only cell-based feeds.