So I'm working on a google gadget(really only gadgetizing so I can get a datastore for this) that I want to be embeddable in a google spreadsheet (after this point, I'm going to skip the word google - you can just imagine it's there).
I want to use the spreadsheet that I embed the gadget in as a key/value store for the data I enter with...
When I upload PDF to Google Docs (using Python's gdata library), I get link to the document:
>>> e.GetAlternateLink().href
Out[14]: 'http://docs.google.com/a/my.dom.ain/fileview id=<veery-long-doc-id>&hl=en'
Unfortunately using that link in IFRAME is not working for me because PDF viewer is redirecting to itself, breaking out of IFRAM...
Hi. Anyone know how to post file using curl to the google documents.
I write this code:
$header[] = "Authorization: GoogleLogin auth=seсretkey";
$header[] = "Content-Type: application/pdf";
$header[] = "Slug: testdoc";
$header[] = "Content-Length: ".$_FILES['file']['size']."";
$url = "http://docs.google.com/feeds/documents/private/full"...
Can someone please tell me the step that I should take to integrate google docs in .cfm page. It is a multi-user web application with single log-in , one username n password.
Thanks.
...
I am messing around with GoogleDocs and it has very very primitive CSS support. If you upload an MSWord .doc or an HTML file and export it as HTML, all styles are applied inline. They have a style block in the html file, but when you upload the HTML file back to google docs, it doesn't apply any non-inline styles.
So I was thinking "m...
I want to upload or create template for my presentation in google docs once only. Whenever I log in my google docs again I should we able to use the saved template to create my presentation.
Could anyone guide how to save my own template ?
Thanks
...
I have list of google docs which i got by authorizing myself with below code:
<cfhttp url="https://www.google.com/accounts/ClientLogin" method="post" result="result" charset="utf-8">
<cfhttpparam type="formfield" name="accountType" value="HOSTED_OR_GOOGLE">
<cfhttpparam type="formfield" name="Email" value="[email protected]...
https://docs.google.com/viewer is awesome, but there are some customizations I need to make, and documentation would be helpful. Discovered here http://googlesystem.blogspot.com... . Haven't seen any public documentation that would help.
http://code.google.com/apis/documents/overview.html covers the Google docs - where the above is mor...
I would like to import data into a Google Document each day automatically without having to do it manually. I have about 50 numbers I need to import, each from a different page. One looks like this: http://www.alexa.com/siteinfo/sweatingthebigstuff.com
I want the 244,604 imported into my document and to refresh automatically. Once I get...
I don't want to appear my document in google search results, but I want to embed google document pdf in my website and user should be able to view them without sign-in.
I am sure that publish/embed option in google docs will make my document searchable.
Is it safe to use 'view without signing in' option and embed document in website? ...
Google provides the ability to search for folders with specific names. While this does search all folder trees for a folder with that name, I would like to search for a folder name that is already under a particular folder. Yet when I use the code that they show as an example on their site:
function retrieveDocsInNamedFolder($gdClient, ...
I am embedding google presentation in my website. But the slides in it are very small and hard to view. Is there some way by I which I could increase the display area of that embedded google presentation. Or, it can't be done at all and I should not waste time searching for it?
Thanks
...
I'm trying to insert a row in my Google spreadsheet. While other functions like counting rows, columns etc work fine; inserting a row gives me 'Namespace Error'.
An exception of type DOMException was thrown, but did not get caught during the execution of the request. You will find information provided by the exception along with a stac...
There doesn't seem to be (to my knowledge) an API to edit Google Docs (not spreadsheets, their HTML based documents). Has anyone done something like the? Maybe by downloading the HTML version, editing and uploading the changes?
...
Is it possible to nest simple programs within a Google doc spreadsheet, similar to how you would w/Basic in Excel? Or alternatively a simple = syntax using regex, if there is a way to do that in google docs?
I want to take a list of multiple names(name1, name2, name3) in a single cell from across multiple identical sheets and transpose ...
Hi guys I'm building a form that uploads documents to my google docs account however its not working I keep getting an error - the following is my code;
$service = Zend_Gdata_Docs::AUTH_SERVICE_NAME;
$client = Zend_Gdata_ClientLogin::getHttpClient($username, $pww, $service);
$docs = new Zend_Gdata_Docs($client);
$newDocumentEntry = $do...
I've been trying to keep this little project entirely within Google docs, but I may have hit a wall. The spreadsheet is being used as a way for multiple users to record individual events with a Template they duplicate. I want to be able to compile a list of names of those attended onto a "report" sheet from all of the unique sheets, whic...
I have a large website at www.mydomain.com. There are 1000 new documents per month and 100 new users per week lets say. I need to be able to programmatically do the following:
user goes to www.mydomain.com/documents
user sees list of all documents they have access to (not ALL of the docs)
I know you can retrieve an ACL for each doc...
Hi guys I'm trying the code samples from zend frameworks site on how to upload a document to google docs but I keep getting this error.
PHP Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, got 415
Content-Type application/x-www-form-urlencoded is not a valid input type.' in C:\......
Hi guys I have a google apps account set up and even set up a simple hello world application from the available samples on the tutorial however I need to set it so I am able to interact with the google docs account associated with the account which has added my application.
To interact with google docs I am aware that a token is reques...