gdata

Get AuthSub current user in Zend GData

I'm using Zend Gdata to connect users to a shared Google Docs spreadsheet that serves as a backend to a custom interface. I need to track which user most recently changed the value in a particular column. I'm not aware of a way to do this using Google Spreadsheets (but that would be an acceptable answer to my question). Is there a w...

Using Android AccountManager to get authtoken for gdata

So I am trying to sync to google docs, without having to ask the user for his credentials. I use this code to get an auth-token: AccountManager mgr = AccountManager.get(activity); authToken = mgr.blockingGetAuthToken(account, DocsService.DOCS_SERVICE, true); This returns a auth-token that looks well-formated. So on my DocsService I ru...

Saving Long/Lat as kml (track)

So, I've got a class with contains a NSMutableArray of CLLocation's, and a name. Now I want to save them to KML, ideally as a track (or , so I can use the file to display the locations traveled.) How would I go about this? I don't expect code, more guidance (I'm new to Objective-C and KML, so got a lot to learn! :) ) ...

How to get current number of contacts using gdata.

I use gdata module for python to get contacts but number of contacts display in web based and from gdata is not match, Just curious ,what's wrong with it. ...

how can I upload a kml file with a script to google maps?

I have a python script, that generates kml files. Now I want to upload this kml file within the script (not per hand) to the "my maps" section of google maps. Does anybody have a python or other script/code to do so? ...

GData Workspace Document

I have an application that currently uses Apache Abdera to parse Atom Pub documents (Workspace, Collection, Feed, Entry) - and want to switch the the GData Libraries, mainly to get rid of a lot of dependencies and I have found the GData calls to be consistently faster. Anyway, I cannot figure out how to generate some of these document t...

Using gdata-api, when I export a presentation using the "png" exportformat, I get back just the first slide's image.

Hi, Have any of you encountered this? I am using gdata-api (GData-Version: 3.0, python library v2.012) to download a google docs presentation as a bunch of images (one image per slide). However, when I download a presentation using "exportformat=png", I only get an image of the first slide ! Is there any workaround to get all the pages ...

Installing GData API in Eclipse

I am trying to work with the Google Docs API in an application for Android. I can find plenty of documentation on the API and how to use it, but I can't seem to figure out how to get the dependencies into Eclipse. I followed the instructions I found here: http://code.google.com/p/gdata-java-client-eclipse-plugin/wiki/Installation and cou...

Python YouTube Gdata Player Error

Hello, I'm trying something really simple: get a list of player urls from the youtube gdata module, def getlist(): index = 1 prev = 0 urls = [] while True: uri = "http://gdata.youtube.com/feeds/api/playlists/E005D335B57338D1?start-index=%i&max-results=50" % index feed = yt_service.GetYouTubeVideoFeed(uri) for en...