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

How to create file kind entry on Google Doc by protocol?

This code work. It create a document kind entry. I only change content of variable:body(term='http://schemas.google.com/docs/2007#document' to term='http://schemas.google.com/docs/2007#file'). After sending request, server return response<400 Bad…
user1446337
  • 5
  • 1
  • 3
0
votes
1 answer

Using Zend GData, How do i get a worksheet cell index by looking for its value?

suppose i have a cell in a worksheet that has a value of "last data cell" is this the correct way to get the index of this cell (i.e A5) using Zend GData ? $query = new…
buzibuzi
  • 724
  • 3
  • 15
  • 27
0
votes
1 answer

Check if GDataServiceGoogleCalendar has updates before refreshing?

I am using GDataServiceGoogleCalendar to fetch events for iOS app. Is there a way to check if the calendar has updates before refetching the events. I am trying to reduce the data transfer and I don't want the app to fetch all the data if there are…
shannoga
  • 19,649
  • 20
  • 104
  • 169
0
votes
1 answer

Edit Spreadsheets at Google Drive with Gdata (Java)

I am trying to edit a public spreadsheet (key = 0Av4aUydPYoNAdHV2MnRaSFhrY0NSZnNOS28yTlhRTVE) on my google_drive using Java and gdata api, but without success. I change the url from https://spreadsheets.google.com/feeds/worksheets/key/private/full…
josecampos
  • 851
  • 1
  • 8
  • 25
0
votes
2 answers

Authorizing localhost with gdata and AuthSub?

While testing I started walking through authorizing my test machine (192.168.15.6, a local IP) with YouTube, which seemed successful. That IP is listed under my authorized sites. However, any actual requests say I'm not authenticated. I'm guessing…
ironfroggy
  • 7,991
  • 7
  • 33
  • 44
0
votes
1 answer

How to upload/update file by FileStream and ResumableUploader in C#

I wanna upload/update file by System.IO.FileStream in Google Documents List API(C#)? I use two way below: Google.GData.Client.ResumableUpload.ResumableUploader (1) public void UpdateAsync(Authenticator authentication, AbstractEntry payload,…
0
votes
1 answer

How to combine scribe authorization with gdata services

Does anyone know how to combine oauth done with scribe with Gdata Service: So after authenticating with scribe I have access token and need to push it to instance of gdata ContactsService (for any other service it would work the same, i guess). I've…
Tomasz Bartczak
  • 597
  • 5
  • 6
0
votes
0 answers

Youtube gdata playlist httprequest

Hey I have a program which performs a GET request to YouTube for a JSON list of videos. Whats is working: Perform a GET request to YouTube for a JSON list of all the videos by a specific user. The currently example url i am usings is : Username is…
Ukjent
  • 823
  • 2
  • 9
  • 26
0
votes
2 answers

Get Google SpreadsheetService using OAuth

I'm developing GWTP project, and below scenarios are tested successfully in my local development mode : Get authenticated and authorized by OpenID and OAuth Save GoogleOAuthParameters object into HttpSession. Another action handler reuses the…
Softhinker.com
  • 895
  • 2
  • 11
  • 25
0
votes
1 answer

Upload data on google spreadsheets using java

I am looking for a way to upload data onto google spreadhsheets using Atom technique. Can anyone guide me how can I do that? I want to make a core java based solution. So far I have figured out the way to enter data using ListEntry, but using Atom I…
user381878
  • 1,543
  • 5
  • 17
  • 30
0
votes
1 answer

GDataCalendar.h is not found when I try to archive

My project is connected with Google Calendar by using GData API. I test everything work fine in Debug mode on both simulator and device. But when I archive in order to create an adHoc. It give me an error that say GDataCalendar.h is not found.…
JHHoang
  • 653
  • 1
  • 8
  • 22
0
votes
2 answers

how to use oauth with Google.GData.Analytics

I want to create an AnalyticsRequest object using oauth. Everything is working accept the callback page. With the client lib for youtube my code looks like this; settings = new YouTubeRequestSettings(appName, clientID,…
thommie
  • 438
  • 5
  • 22
0
votes
1 answer

Get an XML Element via XPath when attributes are irrelevant

I'm looking for a way to receive a XML Element (the id of an entry) from a YouTube feed (e.g. http://gdata.youtube.com/feeds/api/users/USERNAME/uploads). The feed looks like this:
user1405263
0
votes
1 answer

Query Google GData Blogger API in ASP.net C# to find next blog

Currently, I'm working on adding a "previous blog" and "next blog" link to an ASP.net C# application that feeds its blog from a customer's blog hosted on blogspot. Once I grab a specific blog, I then want to get its immediately previous blog and…
Laki Politis
  • 147
  • 9
0
votes
1 answer

Zend Gdata Calendar Bad Request Error

I've been trying to work wit the ZEND GData API in CakePHP and have it setup and retreiving a list of calendars. All of that works, however when I try to retrieve calendar events, I get a bad request error and I am not sure how to solve it. Here is…
Edwin
  • 797
  • 2
  • 14
  • 23