My application is to build a help system in Google Docs using a single
folder that is 'shared' to my external server-side renderer.
Ideally, I would give my server-side app the 'public' URI to the
folder containing all the folders and documents in the help system.
Alternatively, I would log in with an authenticated account and find
these documents.
The best progress I have made uses the Google Documents List API. I
have logged in, and can enumerate the files. Using the 'category' I
can at least find out their parent folder (one level deep).
However, I now need to retrieve their HTML content. I can get the URL
of the file, and change this to return HTML content, however the links
returned by Google Docs List Data API are not the 'public' links but
the link to edit the document with an authenticated account.
If you could shed any light on how best to approach this, I'd be
grateful, as I've been trying to solve it for some time!
Leo
Zend_Http_Response Object ( [version:protected] => 1.1 [code:protected] => 200 [message:protected] => OK [headers:protected] => Array ( [Content-type] => text/html; charset=UTF-8 [Content-disposition] => attachment; filename="Porting_Numbers.html" [Date] => Mon, 21 Dec 2009 16:23:31 GMT [Expires] => Mon, 21 Dec 2009 16:23:31 GMT [Cache-control] => private, max-age=0 [X-content-type-options] => nosniff [X-xss-protection] => 0 [X-frame-options] => SAMEORIGIN [Connection] => close [Server] => GFE/2.0 [Transfer-encoding] => chunked ) [body:protected] => fef Porting numbers...
)