0
votes
2answers
389 views

How do you perform a resumable upload to a google docs collection? Namely using Java and g-data library

I've got a working system to upload to the default root using resumable uploads and I've been able to make the meta data in a collection but I need to be able to do this type of upload straight to a ...
3
votes
1answer
308 views

Building a collection hierarchy using Google Docs API

Is it possible to search for a specific collection, build a hierarchy of sub-collections and then download the contents of the parent collection while maintaining the hierarchy? If this is possible, ...
2
votes
1answer
138 views

GDataServiceGoogleDocs

I am currently incorporating GData with Objective-C, specifically I am trying out Google Docs API. However, I have been running into the following issue as I compile: Undefined symbols for ...
1
vote
1answer
199 views

Expected response code 200, got 400. Unable to convert document

In the last 2 weeks or so, I've suddenly started getting reports of users getting an error in our application saying "Expected response code 200, got 400. Unable to convert document." This is code ...
1
vote
1answer
227 views

Gdata library specifically for Android

import com.google.gdata.client.docs.DocsService; import com.google.gdata.util.AuthenticationException; import com.google.api.client.googleapis.*; import ...
0
votes
1answer
587 views

Problem with image base64 encoding: images are 'quite never' displayed in the created html

I build an html doc by encoding images with base64. Then, I upload the html on google docs, but images are 'quite never' displayed. The encoding is right: for example, I use this to do the image ...
3
votes
0answers
270 views

Structuring a Gdata Spreadsheet query

I am trying to build a Zend_Gdata_Spreadsheets_ListQuery and I can't find any references that explain what the expected query syntax is and what types of queries you can and cannot perform. The ...
0
votes
0answers
19 views

Google Data API very slow to read large spreadsheet

I am using the Google Data API for .net (https://code.google.com/p/google-gdata/) to read data from some Google Docs spreadsheets. I have found that reading from a large spreadsheet ( > 14000 ...
0
votes
0answers
24 views

Gdata spreadsheet API multi-threading (python)

Does anyone know if you can multithread google docs spreadsheet writes using python's gdata spreadsheet api? I have a database of spreadsheets that need to be updated daily, and it would be nice to ...
0
votes
0answers
62 views

How to remove a resource (Google Docs document) from the root collection (folder)

I am using the python gdata library to copy and move a google Docs file in a specific folder. I am using the MoveResource method from DocsClient, the file appears in the desired folder, but also stays ...
0
votes
0answers
85 views

How to get the parent folder of a google docs resource?

Using Python gdata in my Goggle App Engine Application I am trying to copy a google docs resource and put the copy in the same folder as the source file. The CopyResource method that I use put the ...
0
votes
0answers
71 views

Newly unable to share Google collections (folders) using gdata java client library: strange new exception

I have a production web application which uses the gdata java client library to share Google docs collections(folders) with google apps groups. Today, I've noticed the following exception which is ...
0
votes
0answers
338 views

How do I export a google-doc spreadsheet to a csv using python gdata?

I'm aware of this question Download a spreadsheet from Google Docs using Python but I spent the past few hours trying to Export one of my google-doc spreadsheets to a csv with no luck. I'm using ...