We've had the same problem with Google Spreadsheets Java API version 3.0 after it worked for over 2 years then suddenly stopped in the last couple of days. Tracked the problem down to spreadsheetEntry.getDefaultWorksheet(); doesn’t seem to work in the new Spreadsheets.
Check out the section in the API doco “Retrieving information about worksheets” for a workaround. spreadsheet.getWorksheets(); still works ok. Then iterate through the worksheets. Hope this helps. On Thursday, 1 May 2014 02:22:04 UTC+10, Валерий Остапенко wrote: > > Hello. > > I'm using spreadsheet api for java (com.google.gdata.core v.1.47.1 and > com.google.api-client.google-api-client v.1.18.0-rc). > > Starting from yesterday I get 404 error (ResourceNotFoundException) while > geting the worksheet feed. No code was changed, the application was > compiled weeks ago. > > This causes the error: > service.getFeed(spreadsheet.getWorksheetFeedUrl(), WorksheetFeed.class); > //com.google.gdata.client.spreadsheet.SpreadsheetService > > I've made a test new spreadsheet to demonstrate this: > spreadsheet.getWorksheetFeedUrlString() = " > https://spreadsheets.google.com/feeds/worksheets/16NnFQH_k4KTGbAuBGes7nqXlJCWUrUY3-EqepkMBuDw/private/full" > > (the url working in browser). > > Any solutions/workarounds are welcome... > -- You received this message because you are subscribed to the Google Groups "Google Spreadsheets API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
