Accessing spreadsheets api
with https://spreadsheets.google.com/feeds/spreadsheets/private/full is
triggering a remote 500 internal server error.
The same code works fine when it is my public gmail account, but not my
google domain account. I have set up client access on my domain for the
spreadsheet scope and the google api scope and in fact i can list
spreadsheets in a folder usign the DocumentListFeed
It is simply the code from the sample:
SpreadsheetQuery query = new SpreadsheetQuery();
// Make a request to the API and get all spreadsheets.
SpreadsheetFeed feed = service.Query(query);
This is really frustrating!