So, the examples show you how to fetch a spreadsheet feed that gets ALL spreadsheets on the drive.
What is the format for setting the query.Uri? If i use entry.SelfUrl, or
the following code, I get a 404 bad request
SpreadsheetQuery query = new SpreadsheetQuery();
> query.Uri = new Uri(string.Format("{0}/{1}",
> DocumentsListQuery.documentsBaseUri, entry.ResourceId)); //404
> // query.Url = entry.SelfUri.Content; //also a 404
How do I fetch just one file?
