How to stream audio from Google Docs (API)?
Hi all, Is there a way to stream audio from Google Docs (API)? MP3, AAC, etc.. Thanks, Sam ...
Hi all, Is there a way to stream audio from Google Docs (API)? MP3, AAC, etc.. Thanks, Sam ...
Is it possible to pull rows from a Google Docs spreadsheet using PHP? In SQL I would use something like: SELECT * FROM table WHERE field = 'value' LIMIT 1 Is there a way to do this? I've heard you are supposed to use a 'Zend' framework, but I haven't been able to figure that out either. Any help would be appreciated ...
I trying to retrieve a complete list of files from a given directory with code like this uri = '%s' % fentry.content.src feed = gd_client.GetDocumentListFeed(uri=uri) for r in feed.entry: print r.title.text.decode("utf-8") It works except that it only return "real" Google Documents files and does not return files, which were uploa...
Hi Everyone, I am really struck in a problem. I have an iphone application where i need to convert my data in pdf and excel format using google docs. By spending some time on R&D i came to know that i will have to send my data in HTML format. Other than that i came across nothing. Please provide me clue how to implement it. Some sample ...
Here is what I figured so far: To get content of the spreadsheet "od6" with the ID "0Aj3x4n7SOPMRdFA2VmJuampIUDFzdlAwRUwtSEJacmc" you have to acces this URL: https://spreadsheets.google.com/feeds/cells/0Aj3x4n7SOPMRdFA2VmJuampIUDFzdlAwRUwtSEJacmc/od6/private/full (see API) This works fine, if I put the URL into my browser (because I'm...
Consider the following error related to a token issue in Google Docs. How can this be resolved? com.google.gdata.util.AuthenticationException: Error connecting with login URI ...
I have a site that saves user documents and I want to use Paperclip to display them using Google Docs Viewer (http://googledocs.blogspot.com/2009/09/view-online-files-using-google-docs.html). Paperclip is working. For instance, I have a file saved at: 127.0.0.1:3000/assets/resumes/51/original/myfile.pdf I want to display that through t...
Hi, I am trying to insert a row into the middle of a google worksheet, however cannot find a way in the api documentation, I cannot add a new row to the bottom as the program that consumes the spreadsheet data(not written by myself) simply ignores new rows added to the bottom. anyone got any Ideas? Thanks, Mark ...
The "Google Chrome" folder stores Chrome synchronous information such as bookmarks. I was just wondering if there is a way to access those information via the Google Docs API? I've look at the demo provided by Google but it doesn't seem you can access that folder via API. The demo that I looked is here, if you click "Folders", it returns...
I need to sync the WebDB of an extension I'm building, and was thinking about using a GoogleDocs spreadsheet as storage, so the extension should be able to read/write the "file" to keep the sync. (each line of the spreadsheet would be a DB record ) Is this feasible, or there are perhaps better solutions? ...
I'm trying to retrieve the list of documents (from Google Docs) as an XML feed via ruby's net/http. So getting an AuthSub token works pretty well, then the issues begin... No matter what I'm trying, I'll always get Token invalid - Invalid AuthSub token as a response. First of all, I'm requesting the AuthSub login stuff in the browser vi...
I've uploaded an MS powerpoint file to my server, and I'm trying to use Google Docs viewer (http://docs.google.com/viewer) to display it on a webpage. The file is available here: http://elgg.wamped.org/test.ppt If I invoke the docs viewer with the above URL, it is working as expected, see: http://docs.google.com/viewer?url=http%3A%2F%2...
Hi, I need to upload a PDF file to users google docs which is generated by pdfjet on google app engine. I figure out to generate pdf using pdfjet for gae/j. pdfjet uses streams to create the pdf. Is there anyway to convert stream to file so I can upload to users google docs. I tried gaevfs but couldn't make it work. I can use another pd...
Is it possible to create any kind of file on GAE/J and upload to google docs? I've asked a similar question before about creating and uploading PDF. Thanks. Update According to Google Docs API "To upload a document to the server, you can attach the file to the new DocumentListEntry using the setFile() method.". And setFile method nee...