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
5
votes
1 answer

NoSuchMethodError : google common ImmutableSet.copyOf(..)

I upgraded my Google app Engine app from 1.7. to 1.8. + Java 7 and i leveled up all API libraries to be up-to-date. I am getting strange exceptions during app inicialization in GAE container : Constructor threw exception; nested exception is…
Martin V.
  • 3,560
  • 6
  • 31
  • 47
5
votes
2 answers

Getting Zend_GData Feed for a Specific Google Calendar

I had a long detailed question about how to get a specific calendar's event feed, but figured (I think) a solution out before I posted. However, even with the solution I'm left wondering what I'm missing about this process. To get a single…
Tim Lytle
  • 17,549
  • 10
  • 60
  • 91
5
votes
2 answers

How to get all YouTube comments with Python's gdata module?

Looking to grab all the comments from a given video, rather than go one page at a time. from gdata import youtube as yt from gdata.youtube import service as yts client = yts.YouTubeService() client.ClientLogin(username, pwd) #the pwd might need to…
TankorSmash
  • 12,186
  • 6
  • 68
  • 106
5
votes
1 answer

GData iPhone Archive Error

Following the instructions here: http://hoishing.wordpress.com/2011/08/23/gdata-objective-c-client-setup-in-xcode-4/ I added GData to my iOS 5 project. When it's time to archive the project I get the following error: Undefined symbols for…
AFM
  • 51
  • 1
5
votes
4 answers

Google Apps domain as OpenID provider

How can I make my Google Apps domain to be OpenID provider. Is there any documentation, tutorial, working example something? How to authenticate users in my own application using Google Apps domain authentication (I mean without OpenID). I've heard…
Alex Bolotov
  • 8,781
  • 9
  • 53
  • 57
4
votes
1 answer

Accessing Google APIs from iPhone native app

I'd like to access some Google API's from within an iPhone native app. I'm not a web programmer and have never used AJAX, but I'm guessing I need some kind of bridge between Objective-C and Javascript. Ideally I'd just fire XML at Google and process…
Justicle
  • 14,761
  • 17
  • 70
  • 94
4
votes
1 answer

Any tutorials for using GData API to upload to video to youtube form iOS app?

Anyone one tell me where can I find tutorials to teach me how to use GData to upload a video to youtube from my iOS app?
tommi
  • 6,883
  • 8
  • 37
  • 60
4
votes
2 answers

Zend GData Spreadsheet WorksheetID

What is the $worksheetId from the Zend GData documentation supposed to be? http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html $query = new…
David Souther
  • 8,125
  • 2
  • 36
  • 53
4
votes
1 answer

Authenticating to Calendar with Python gdata and oAuth 2

I'm migrating a Python application from oAuth 1 to oAuth 2 that reads a user's Google calendar feed. With oAuth 1: My app would open a browser were user can authenticate with his GMail account and authorize access, and my app would obtain a…
Neurus
  • 657
  • 4
  • 27
4
votes
1 answer

how to deploy gdata-objectivec-client library in xcode 4

I want to create an application that support Youtube API. I use this tutorial for create cross-references project http://mischneider.net/blog/?s=gdata But this tutorial deploy my project only in XCode 3. My questions - how do I connect GData in…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
4
votes
1 answer

What are the differences between gdata.docs.service.DocsService and gdata.docs.client.DocsClient?

There're similarities (in authentication and a few other operations, e.g. both can get documents list), but what are the differences? Why do we need both of them? I'm learning gdata api and i realized I can login using OAuth access token this way…
Thi Duong Nguyen
  • 1,745
  • 2
  • 12
  • 18
4
votes
0 answers

How to retrieve language specific movies using YouTube API?

I need to retrieve only english videos from the YouTube but I've found the api is pretty inaccurate. code.google.com/apis/youtube/2.0/developers_guide_protocol.html#lrsp (sorry, max 2 links for me) In a video search request, the lr parameter…
Adam
  • 41
  • 3
4
votes
1 answer

Retrieving token and secret from gdata.gauth.OAuthHmacToken python object

I'm following Google's great sample code for three-legged OAuth. Specifically, I'm looking at the python version of the code. I'm stuck between 'Upgrading to an access token' and 'Using an access token'. In 'Upgrading to an access token', there is a…
sonofabell
  • 91
  • 1
  • 6
4
votes
1 answer

Google contacts gdata (Java) fails on No parser for content type:application-xml[application/xml]

Recently, a 2 days ago we started to experience exception in google gdata client in Java, when trying to access contacts (feed : /m8/feeds/contacts/default/full). The exception is : com.google.gdata.util.ParseException: No parser for content…
SlavaG
  • 518
  • 8
  • 28
4
votes
2 answers

Is it recommended to use GAE types?

I see that GAE provides several types like Email or PostalAddress for its entities. I've read they don't provide any validation. So I wonder: what's the benefit of using them instead of storing the data on a simple String field? Any reason I should…
Pere Villega
  • 16,429
  • 5
  • 63
  • 100