Unfortunately, it's probably not a feature we'll add, as the Spreadsheets API is meant explicitly to modify the data in a spreadsheet. We try not to duplicate functionality between APIs.
-Vic On Wed, Jun 29, 2011 at 4:43 PM, Scott Malinowski <[email protected]>wrote: > Vic, > > Thank you for your response and assistance. > > The spreadsheet is definitely within the expected folder. When I create the > spreadsheet, I am using " > https://docs.google.com/feeds/default/private/full/folder%3AFOLDERID/contents" > and I can see the spreadsheet in the correct folder via the Google Docs web > site. > > Thanks for the info about folder not being found via the Spreadsheets API. > I guess that would explain why I couldn't find it :-) That is definitely a > feature I think should be added. When I try to use the Documents List API I > get an error which reads "Invalid request URI". I have tried: > > var requestUrl = "https://docs.google.com/feeds/default/private/full"; > > as well as: > > var requestUrl = " > https://docs.google.com/feeds/default/private/full/-/spreadsheet"; > > Here is my JavaScript. I am logging the value for GoogleDocsAuthKey so I do > know I have an authorized connection to the Google account (I connected to > the writely service). I'm sure I'm doing something stupid but I do not see > what. I can get a list of spreadsheets using the Spreadsheet API and using > the wisely-authorized connection. > > var ajaxRequest = new Ajax.Request(requestUrl, > { > method: "GET", > evalJSON: "false", > requestHeaders: [ "Authorization", GoogleDocsAuthKey ], > onSuccess: this.getSpreadsheetsSuccess.bind(this), > onFailure: this.ajaxFailure.bind(this) > } > ); > > Thank you, > Scott >
