also worth noting exactly same 500 error when using Client credentials
SpreadsheetsService service = new
SpreadsheetsService("MySpreadsheetIntegration-v1");
service.setUserCredentials(USERNAME, PASSWORD);
On Monday, 3 December 2012 12:31:38 UTC+1, Alastair Todd wrote:
>
> 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!
>