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

AuthSub session token never expires; security problem?

I'm using GData's AuthSub so that my administrative application doesn't need to store user/password information. I just came to the point in the documentation where I learned how to exchange the first, single-use token, for a session token…
Neil C. Obremski
  • 18,696
  • 24
  • 83
  • 112
4
votes
1 answer

How to add google api to .net c#

How can i add the google data API to the .net framework. I saw the gdata documentation but was of no help. Now I am confused whether should I use web reference?
user168635
  • 127
  • 2
  • 5
4
votes
1 answer

How can a Dart application read cell data from google spreadsheets

What are the possible options and setups one would need for reading data out of a google docs spreadsheet into a dart web application? Does dart need the wrapper around gdata REST api to do this? Has any dart project or sample interacted with google…
adam-singer
  • 4,489
  • 4
  • 21
  • 25
4
votes
4 answers

Parsing PLIST in iOS

I am working on building a PLIST that will essentially be a directory. I would like to parse the plist so I may display the last names in a Table View, and when selected, populate the next view's labels with things such as addresses, phone numbers,…
user717452
  • 33
  • 14
  • 73
  • 149
4
votes
2 answers

YouTube Zend library get VideoId of playlist entry

I am using the Zend GData library to manage YouTube videos from within my application. The application gives the user the ability to choose to add the uploaded video to one of their pre-existing YouTube playlists if they desire. One problem is that…
4
votes
1 answer

Retrieve posts based on Labels in blogger using Gdata

Is it possible to use gdata javascript or any other javascript api to retrieve the list of blog posts based on labels? My usage case: Each blog post has a label that means its category. Some posts are labelled with 'Summary' and the category it…
Johnny Everson
  • 8,343
  • 7
  • 39
  • 75
4
votes
3 answers

Google App Engine cannot find gdata module

I can run a simple "Hello World" Google App Engine application on localhost with no problems. However, when I add the line "import gdata.auth" to my Python script I get "ImportError: No module named gdata.auth". I have installed the gdata module…
titaniumdecoy
  • 18,900
  • 17
  • 96
  • 133
3
votes
2 answers

ios gtm-oauth no keyboard

I am trying to use the gtm-oauth kit (http://code.google.com/p/gtm-oauth/wiki/GTMOAuthIntroduction) for OAuth2. As instructed by the documentation - i have included all the necessary files and code in my project in XCode 4. Once i run the…
SamuraiSteve
  • 95
  • 1
  • 5
3
votes
0 answers

Pulling data from Google Calendar on Android in JSON

I'm using Android SDK level 8, Java. I have an app with a WebView and I want to import JSON in it. What I want to achieve is: Send HTTP requests to the Google Calendar API v3 and receive data in raw JSON, however, authenticating the request using…
Ivo
  • 1,673
  • 3
  • 19
  • 28
3
votes
8 answers

NoSuchMethod error getting a gdata service

I get the following error: Exception in thread "main" java.lang.NoSuchMethodError: com.google.common.collect.ImmutableSet.of([Ljava/lang/Object;)Lcom/google/common/collect/ImmutableSet; at…
kentcdodds
  • 27,113
  • 32
  • 108
  • 187
3
votes
1 answer

Attaching arbitrary Id to Google Contact Address

I am trying to do a synchronization between Google Contacts (via their their Data API) and our internal system. I want to be able to attach our Address ID to the Google Structured Address but I can't seem to find a way. I tried to add it as custom…
Pavel Donchev
  • 1,809
  • 1
  • 17
  • 29
3
votes
1 answer

How to use Google Calendar's "Private Address" with gdata.calendar.service?

There are several examples online describing how to use the gdata.calendar.service (I mistakenly wrote "client" here) class to log in to a calendar with an email address and a password. Is there a way to use the calendar's "Private Address" (be it…
user153275
3
votes
1 answer

Google API OAuth - getting 401 (Unauthorized) when trying to upload to YouTube

The last days I've been banging my head against the wall trying to upload a movie to YouTube using its official Python Wrapper lib. What I've succeeded till now: Building an Request Access URL Saving the returned OAuth Secret for a later use…
3
votes
2 answers

Using the Python GData API, cannot get editable video entry

I am having trouble getting a video entry which includes a link rel="edit". I need such an entry in order to be able to call DeleteVideoEntry(...) on it. I am retrieving the video using GetYouTubeVideoEntry(youtube_id=XXXXXXX). My yt_service is…
Krystian Cybulski
  • 10,789
  • 12
  • 67
  • 98
3
votes
1 answer

Progress bar for YouTube direct uploads with data?

I would like to display a progress bar for direct youtube uploads using the gdata api. I have the uploads getting kicked off in by an ajax call to an uploader.php script, and when it completes, I update the status on the page the user sees. I…
Adam
  • 913
  • 1
  • 9
  • 26