Hello.
When a search was performed by SpreadsheetService#getEntry() of
Spreadsheet API, the Exception came out.
It has been working rightly before though.
If you realize any mistakes related to codes or others, please let us
know. Thank you for your supports.

Made my code:
SpreadsheetService spreadsheetService = new SpreadsheetService("xxxxx-
yyyyy-1.0.0");

try {
        spreadsheetService.setUserCredentials ("xxxxx@xxxxxx", "xxxxxxx");
        URL entryURL = new URL ("http://spreadsheets.google.com/feeds/
spreadsheets/" + "mySpreadsheetID");
        SpreadsheetEntry spreadsheetEntry = spreadsheetService.getEntry
(entryURL, SpreadsheetEntry.class);  //←ResourceNotFoundException has
occurred at this location
        SpreadsheetEntry newEntry = new SpreadsheetEntry(spreadsheetEntry);
} Catch (AuthenticationException e) {
        logger.info("ServiceException:" + e.toString ());
} Catch (ServiceException e) {
        logger.info("ServiceException:" + e.toString ());
}

com.google.gdata.util.ResourceNotFoundException: OK
<HTML>
<HEAD>
<TITLE> Not Found </TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1> Not Found </H1>
<H2> Error 404 </H2>
</BODY>
</HTML>

Has not it recurred, although it seems that an error which was before
alike is reported and it was already solved?
Although we change the way of serching from the designaed key of
spreadsheet to serching by name of spreadsheed, the Exception came out.

Reply via email to