Questions tagged [gdata-api]

The GData API is a Rest style web protocol to pragmatically interact with google applications and a services, like Google Docs, Contacts and Calendar etc.

The GData API is a rest style web protocol based on Atom/RSS. It can be used to query, modify and data hosted by Google's web based applications like Google Docs, Contacts and Calendar etc..

Google has wrapped the GData API to client libraries for Java, JavaScript, .NET, PHP, Python, Objective-C. If you are asking a question regarding the GData API and one of these client libraries ensure you include the tag for the language also.

For more information see:

532 questions
9
votes
3 answers

How to publish a dynamic event feed for google calendar?

I'm building a webapp that manages certain types of events for users. I want to provide a way to display those events inside of a user's google calendar. What I was really hoping for was a way to publish my own google calendar compatible feed and…
Tauren
  • 26,795
  • 42
  • 131
  • 167
8
votes
2 answers

Google Data API: how to do authentication for desktop applications

I wonder about the best/easiest way to authenticate the user for the Google Data API in a desktop app. I read through the docs and it seems that my options are ClientLogin or OAuth. For ClientLogin, it seems I have to implement the UI for…
Albert
  • 65,406
  • 61
  • 242
  • 386
8
votes
1 answer

c# samples of youtube API (or gdata API) using OpenID and OAuth

Are there any c# code samples of youtube API (or gdata API) using OpenID and OAuth ? Or maybe a post / article with code examples Code samples of using dotnetoauth with the youtube API would be great too
preguntón
  • 93
  • 6
7
votes
4 answers

Approach for fixing NoClassDefFoundError?

Possible Duplicate: NoClassDefFoundError - Eclipse and Android I'm seeing this question is getting asked a lot in many different contexts. Perhaps we can set some strategies for locating and fixing it? I'm noobish myself so all I can contribute…
DJC
  • 3,243
  • 3
  • 27
  • 31
6
votes
3 answers

Google Data API authentication

I am trying to get my Django app (NOT using Google app engine) retrieve data from Google Contacts using Google Contacts Data API. Going through authentication documentation as well as Data API Python client docs First step (AuthSubRequest) which is…
Sergey Golovchenko
  • 18,203
  • 15
  • 55
  • 72
6
votes
1 answer

Could not find class error when trying to upload a video to YouTube using the gdata API

I am currently writing part of an Android application to upload a video to YouTube using the Google Data API. I have the latest version of the API from Google Code, and I have basically copied the example from their Developer's Guide for the time…
epochengine
  • 2,072
  • 17
  • 21
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

Any examples/tutorials on using Google GData API - Youtube on iphone?

I need to list a specific users uploaded videos (YouTube) in a UITableView. I've downloaded the GData source and example projects (not iphone specific) but I can't seem to get it to work. Does anybody know of any good (or any at all ;)) tutorials…
Dumble
  • 63
  • 1
  • 3
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

Batch request in Google Calendar V3 REST API

How to get/add/update Google Calendar Events using batch request through V3 REST API? I've tried and but not works. According to the docs (https://developers.google.com/google-apps/calendar/batch) it should be possible to send a batch request by…
Riyaz Ashraf
  • 163
  • 1
  • 10
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

Youtube Playlist shown in ListView

I have a GDATA link that I want to use in my App. This link contains a playlist and I want that playlist to be displayed in a ListView. The user will then select the video he/she wants and will then be able to play it in side the app using the local…
Derek Williams
  • 525
  • 6
  • 21
5
votes
3 answers

Get complete playlist listing for a YouTube User via API

So, here's my code for getting a youtube user's public playlists: function getyoutubeplaylists($userName) { $yt = connectyoutube(); $yt->setMajorProtocolVersion(2); $playlistListFeed = $yt->getPlaylistListFeed($userName); foreach ($playlistListFeed…
poolnoodl
  • 413
  • 1
  • 4
  • 10
5
votes
3 answers

CircularRedirectException with google authentication

I'm trying to display a user's favorites videos list in youtube. So basically before getting the video feed I need to login to get the auth token. I am encountering some sort of a problem with cookies. Here is my code for logging: public static…
Alex1987
  • 9,397
  • 14
  • 70
  • 92
5
votes
3 answers

Does Google+ have a public API?

Possible Duplicate: Is there already a Google+ API? Does Google+ have a public API which I can use in my iOS application?
Solid Soft
  • 1,872
  • 2
  • 25
  • 55
1
2
3
35 36