Questions tagged [gdata]

GData (Google Data Protocol) provides a simple protocol for reading and writing data on the Internet, designed by Google.

Gdata (Google Data Protocol) provides a simple protocol for reading and writing data on the Internet, designed by Google. GData combines common XML-based syndication formats (Atom and RSS) with a feed-publishing system based on the Atom Publishing Protocol, plus some extensions for handling queries. It relies on XML or JSON as a data format.

Most Google APIs today are not Google Data APIs. The Google Data APIs applies only to a few APIs, as described in the GData API Directory

991 questions
0
votes
1 answer

Get Comments On a Photo Using Its Photo ID in GData object-c client(Picasa)

I am currently working on a an iOS app that needs to get a Picasa image's comments using the photoID of the picture. However there is no mentions of comments on the developer guide that google provides and I am also a beginner on working with GData.…
virindh
  • 3,775
  • 3
  • 24
  • 49
0
votes
1 answer

AuthSub. How to check token existence? Python gdata client

I develop a decorator to authenticate my app and start to work with youtube API. Decorator appointed to wrap a REST resource class methods. def youtube_auth(f): def wrap(self, *args, **kwargs): …
I159
  • 29,741
  • 31
  • 97
  • 132
0
votes
1 answer

Error while integrating Gdata to upload video on Youtube

To upload video through you tube I m integrating GData project as following the steps descibed in this link http://hoishing.wordpress.com/2011/08/23/gdata-objective-c-client-setup-in-xcode-4/ After completing all the steps I m getting errors as …
Nikunj
  • 987
  • 11
  • 25
0
votes
1 answer

About Google Plus API and Zend GData

Well, recently I am writing something as facebook activity. I want to support the google plus platform, so I search about the google plus API library in PHP, and find that there is two source I can choose: Google Plus API and Zend GData. Then, there…
Fenix
  • 1
0
votes
1 answer

iOS:Fetch all gmail Contacts into your iOS app

I have gone through gdata-objectivec-client but i am not getting any way to include gdata api(framework) into my iPhone app as Gdata.framework file is in red color means missing in downloaded source code I have also downloaded sample…
Dinesh Kaushik
  • 2,917
  • 2
  • 23
  • 36
0
votes
2 answers

Passing in arguments to command line (PYTHON)

So I have a function from GDATA API (gdata.sample_util.authorize_client(client, service=client.auth_service, source=client.source, scopes=client.auth_scopes)) which uses command line to receive arguments. How can I automate that so I can…
user2315
  • 831
  • 5
  • 11
  • 21
0
votes
1 answer

ANDROID split variable string

I have a parsed a YouTube GDATA JSON-C file, and as such it is JSON the duration of each video does not have the : in between (it is parsed as 23 or 432 instead of 0:23 or 4:32) how would i split a string before the last 2 characters without knowing…
SquiresSquire
  • 2,404
  • 4
  • 23
  • 39
0
votes
1 answer

Using GDataXML to Parse Included XML File

This XML will be included in the app: Directory
user717452
  • 33
  • 14
  • 73
  • 149
0
votes
1 answer

Guava - gdata libraries incompatibility

I copied guava-11.0.2 from gdata-java-client/gdata/java/deps/ when using google spreadsheets as described here/Setting up your client library (Java tab). This version of guava is actually bundled within gdata-src.java-1.47.1.zip. Everything worked…
Joe M
  • 2,527
  • 1
  • 25
  • 25
0
votes
1 answer

GData Objective-C Client SVN could not be checked out

I tried to checkout the GData for Obejctive-C client (found the link from here: http://code.google.com/p/gdata-objectivec-client/source/checkout), but it kept telling me that revision is non-existent. I also tried different tools and methods. But…
Jason
  • 15
  • 3
0
votes
1 answer

Import or fetch contacts from gmail to 3rd party app or gadget

i want to import or fetch contacts from gmail into my application. I have done this by using gdata but my problem is that how can i get updated contact and new contacts everytime. I have made a gadget which is adding in gmail. That gadget have two…
0
votes
1 answer

Getting video url uploaded to YouTube via GData framework

I have a question about GData Youtube framework. I am uploadind my video successfully. But i'm asking that, is it possible to get video url immediately after dissmissing my YouTubeViewController. I want to store that link in my NSString variable.…
M. Salih Kocak
  • 189
  • 2
  • 14
0
votes
1 answer

Youtube captions eample

Can anyone provide an example of how to retrieve captions for YouTube video? Based on API docs, API request https://gdata.youtube.com/feeds/api/videos?q=surfing&caption&v=2 returns list of videos about surfing with captions. However a request for…
Stpn
  • 6,202
  • 7
  • 47
  • 94
0
votes
1 answer

What do I have to change in Zend GData Spreadsheet so it will request version 3 of Google Spreadsheets API?

"Important: Versions 1 and 2 of the Google Spreadsheets API have been officially deprecated as of April 20, 2012 and will be shut down on October 20, 2012. Migration to v3 should be simple, as it includes all the features of v1 and v2, thus you only…
0
votes
1 answer

Google contacts. GetPhoto

We want to import contacts photos from google API. Following code was working for me. for email, name, entry in feed: photo = client.GetPhoto(entry) if photo: fname = str(uuid.uuid4()) + '.jpg' image_file = open(dname + '/'…
Nikolay Fominyh
  • 8,946
  • 8
  • 66
  • 102