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

Using Google GDATA API to batch add users to groups

I am trying to use the GDATA API to batch add users to a Google group in C#. Adding one user at a time using Groups.AddMemberToGroup takes a while to run. There is a Groups.Batch method, but I have not been able to find any examples.
0
votes
1 answer

Error 400 invalid value in google apps group settings api

I am trying to call a url with put request and the url is PUT https://www.googleapis.com/groups/v1/groups/groupUniqueId but getting error response as { "error": { "errors": [ { "domain": "global", "reason": "required", "message": "Required" }…
mathlearner
  • 7,509
  • 31
  • 126
  • 189
0
votes
1 answer

Google GData YouTube API, Search?

I have been trawling through all I can to do with the Google GData YouTube API and its doing nothing but hurting my brain, Google do not make it clear to learn and there seesm to be little content online about it (Objective-C iOS, Mac). I just want…
Josh Kahane
  • 16,765
  • 45
  • 140
  • 253
0
votes
1 answer

How to retrieve the download link for a not supported doc hosted on Google Docs?

Google's official doc tells us : The download URL for files looks something like this: https://doc-04-20-docs.googleusercontent.com/docs/secure/m7an0emtau/WJm12345/YzI2Y2ExYWVm?h=16655626&e=download&gd=true And it also tells us that a document…
Ricola3D
  • 2,402
  • 17
  • 16
0
votes
1 answer

Retrieve only specific columns of spreadsheet with zend gdata from gdocs

I am working with relatively large spreadsheets from gdocs and access them via the zend library. I only need certain columns at any given time so in order to save memory it would be helpful to use the list-based feed to only retrieve these certain…
Marco
  • 1,472
  • 16
  • 29
0
votes
1 answer

iPhone Parsing Enclosure url tag?

I am having an issue with a blog I am working on. The method I am using to parse is: NSArray *channels = [rootElement elementsForName:@"channel"]; for (GDataXMLElement *channel in channels) { NSString *blogTitle = [channel…
user717452
  • 33
  • 14
  • 73
  • 149
0
votes
1 answer

java.lang.nullpointerexception no authentication header informatio

When I am Using the batch functionality of the GData Java client library getting this exception. We are able to get the feed but unable to do batch deletes. com.google.gdata.client.GoogleAuthTokenFactory$OAuthToken@259e215b …
0
votes
1 answer

Finding the content element of a gdata entry

The Google Documents List API (v3) references a "content element" several times. In the content element there is a URI to export the file and the mime type of the file. How can I find the content element and extract that information? Thank you!
benkdev
  • 673
  • 2
  • 16
  • 32
0
votes
1 answer

How to get all Blogger post properties with Zend GData

I have code like this: require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata'); Zend_Loader::loadClass('Zend_Gdata_Query'); Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); $user = 'usser'; $pass = 'pass'; $service =…
warriorslo
  • 23
  • 3
0
votes
2 answers

Using changestamp in GoogleDocs (null changestamp)

I am trying to find the max changestamp so I can start using it. I tried the following: URL url = "https://docs.google.com/feeds/default/private/changes?v=3" ChangelogFeed foo = service.getFeed(url, ChangelogFeed.class); LargestChangestamp stamp =…
benkdev
  • 673
  • 2
  • 16
  • 32
0
votes
1 answer

c# and google spreadsheet row height, merging cells

I am using gdata version 2.1. I guess version 3.0 is not out yet. My question is: Is there a way to set row height or merge cells in google spreadsheets using c# and gdata? Thank you all..
MCA
  • 59
  • 5
0
votes
1 answer

Retrieve the URL and the thumbnail from Youtube API (zend framework)

I trying to show a video playlist with zend, but after catching the playlist info, I don't know what I have to do with for finding thumbnail or url of the thumbnail. Here is my code: require_once 'Zend/Loader.php'; // the Zend dir must be in your…
0
votes
1 answer

Get a FileEntry from a path in Google Documents List Api (gdata-java-client)

How do I get a Google Docs FileEntry from its path? Once I get the paths from entries in Google Docs, such as: https://doc-04-20-docs.googleusercontent.com/docs/secure/m71240U1?h=1630126&e=download&gd=true How do I obtain their corresponding…
benkdev
  • 673
  • 2
  • 16
  • 32
0
votes
1 answer

Search Blogger in Objective-C

I would like to implement a controller to search posts on a blog based in Blogger. I have been using the GData API for other projects (generally for Youtube searches) but the GData API (especially that of Objective-C) severely lacks details…
joshim5
  • 2,292
  • 4
  • 28
  • 40
0
votes
2 answers

Google Analytics API - Table ID

I am trying to access our site's Web usage statistics through Google Analytics API. I downloaded the Python code from here http://code.google.com/p/gdata-python-client/ Under samples/analytics folder, there is data_feed_demo.py. I ran it, however…
BBSysDyn
  • 4,389
  • 8
  • 48
  • 63