Hello. I am developing php application that will export documents from Google docs. Application must to download document (doc,ppt,xls) from account and save it. I am successed with doc and ppt. But have problems with xls. I think problem is because docs and ppts are downloaded from docs.google.com and xls from spreadsheets.google.com .
Maybe i must to provess Auth on spreadsheets.google.com too. How to do this? In manual i have found "Note: If you wish to use the same OAuth/ AuthSub token to download both documents and spreadsheets, you will need to request a token that works in both the docs.google.com and spreadsheets.google.com scope.)" To to request this token? I use php library. To do auth i do: $service = Zend_Gdata_Docs::AUTH_SERVICE_NAME; $client = Zend_Gdata_ClientLogin::getHttpClient($this->user_login, $this->user_password, $service); $gdocs = new Zend_Gdata_Docs($client); Maybe i must to do something with $client object before creating Docs object. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Docs Data APIs" group. To post to this group, send email to Google-Docs-Data-APIs@googlegroups.com To unsubscribe from this group, send email to google-docs-data-apis+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/Google-Docs-Data-APIs?hl=en -~----------~----~----~----~------~----~------~--~---