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

Youtube Upload Quality

I am using google's GData API in order to upload a video to youtube from my app. The upload works fine however the quality of the video uploaded is only 360p whereas the quality of the original video is 720p. Is this working as intended? If so is…
Brenton Morse
  • 2,567
  • 4
  • 21
  • 16
6
votes
1 answer

Access Gmail atom feed using OAuth

I'm trying to grab the Gmail atom feed from a python application using OAuth. I have a working application that downloads the Google Reader feed, and I think it should simply be a matter of changing the scope and feed URLs. After replacing the URLs…
Will
  • 2,086
  • 23
  • 30
6
votes
3 answers

contentDetails or duration not coming using Youtube v3 api

Look at this link , there is an example given https://www.googleapis.com/youtube/v3/videos?id=7lCDEYXw3mM&key=YOUR_API_KEY &part=snippet,contentDetails,statistics,status Part of the response is "contentDetails": { "duration": "PT15M51S", …
AtanuCSE
  • 8,832
  • 14
  • 74
  • 112
6
votes
2 answers

Google Calendar feed api deleted events

I'm syncing the Google Calendar with my application (I store events in a database). When an event is updated I can easily find the last updates by sorting the event feed on the 'updated' order. However, if an event is removed / deleted, how can I…
hsmit
  • 3,906
  • 7
  • 34
  • 46
6
votes
3 answers

Error 404 when creating a calendar with Google Calendar Api v3 using c# .net

I am trying to create a calendar using Google Calendar API v3 if it does not already exist. My implementation successfully retrieves all my calendars and events and can change calendars, but I am struggling with adding a new calendar. This is what…
Sindre
  • 3,880
  • 2
  • 26
  • 39
6
votes
2 answers

Is the YouTube Google Data API (GDATA) deprecated?

I'm about to start a project that requires some simple YouTube non-write data operations, like gathering users playlists and videos. I read that the YouTube 2.0 API is deprecated, but I don't really want to use OAuth authentication required for API…
Zhivko
  • 550
  • 4
  • 16
6
votes
1 answer

Rate (like/dislike) YouTube comments

Simple problem: I'm using Youtube gdata through javascript to: Comment, Reply and Like/Dislike videos. Everything is working so far! However, I'm trying to allow users to specifically like and dislike COMMENTS (the same way you can on native…
6
votes
2 answers

read.xls - read in variable-length list of sheets, with their names

Given several .xls files with varying number of sheets, I am reading them into R usingread.xls from the gdata package. I have two related issues (solving the second issue should solve the first): It is unknown ahead of time how many sheets each…
Ricardo Saporta
  • 54,400
  • 17
  • 144
  • 178
6
votes
4 answers

Getting Youtube Channel Playlist using Objective-C API

I'm trying to use Google's Objective-C Youtube APIs to fetch a youtube channel's playlist - with no luck. -I downloaded Google's official API…
sirab333
  • 3,662
  • 8
  • 41
  • 54
6
votes
2 answers

Gdata python Google apps authentication

I have been able to login to Google spreadsheet with gdata python client.programmaticlogin function following the sample/spreadsheet in gdata downloaded pack. Now I am not able to login to my enterprise gapps 'me@mycompany.com' do I have to pass any…
karthik
  • 305
  • 3
  • 10
6
votes
2 answers

Get XML with id's of all uploaded videos on youtube channel

I have more than 100 videos uploaded in a youtube channel. I get the xml of channel as: https://gdata.youtube.com/feeds/api/users/UserId/uploads , it only returns xml with id's for only 25 videos. How can i get xml of all uploaded videos on…
Najeebullah Shah
  • 4,164
  • 4
  • 35
  • 49
6
votes
1 answer

Structuring a Gdata Spreadsheet query

I am trying to build a Zend_Gdata_Spreadsheets_ListQuery and I can't find any references that explain what the expected query syntax is and what types of queries you can and cannot perform. The closest I have been able to come to finding anything is…
Rebecca
  • 489
  • 1
  • 6
  • 11
5
votes
1 answer

GData with Oauth with Service Account

I am in a strange problem. I am writing an application in core java which needs to access its own account at google docs. So after doing a lot of googling, I found that OAuth2.0 with Service Account is something I am looking for. But I am not using…
user381878
  • 1,543
  • 5
  • 17
  • 30
5
votes
1 answer

SimpleXMLElement, xpath, and sub elements

I am accessing the gData Api on YouTube. I'll use this xml for reference. I'm using xpath on a child SimpleXMLElement object, but rather than the xpath searching ONLY the child element and its children, it seems to still be searching from the root…
Drew
  • 1,687
  • 5
  • 25
  • 46
5
votes
2 answers

Google GData .Net OAuthUtil.GetAccessToken 400 Bad Request

I'm trying generate an OAuth access token via the Google .Net GData Client Library. I've been using the instructions in http://code.google.com/apis/gdata/docs/auth/oauth.html as a guide and everything's been working up until I attempt calling…
Zac Seth
  • 2,742
  • 5
  • 37
  • 56
1 2
3
66 67