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

Google Calendar Gdata old recurring event deleted event still showing with a EventID ending in Z

I have tried to Google this question, but have had no luck, maybe due to the search string "Z" not being specific enough. Background: Using Google Calendar Zend gdata library, and have been using simple code to list events for a specific time…
redfox05
  • 3,354
  • 1
  • 34
  • 39
5
votes
3 answers

"Insecure HTTP requests not permitted. Use HTTPS." when trying to retrieve user with gdata 2.0.16 python library

I'm trying to retrieve a user with the following code found in the gdata provisioning api documentation. I'm attempting this for a django 1.3 app, running gdata-2.0.16 in python2.7: from gdata.apps import client from myapp import settings client =…
Nathan Jones
  • 4,904
  • 9
  • 44
  • 70
5
votes
1 answer

gdata-java-client + oauth2 + access_token secret

I'm currently trying to use the new java client(s) and due to legacy reasons for current state of google libraries, I need to use both the gdata and the new google java client api. Obviously I'd like to use OAuth2 -- however with OAuth2 I am not…
5
votes
1 answer

google hybrid protocol authentication issue

I've been successfully using OAuth1.0+OpenID Hybrid protocol for authentication with Google and thereafter using its services. However, I am facing an error for a specific user account. My current flow: Perform Discovery redirect user to provider…
helloworld
  • 2,179
  • 3
  • 24
  • 39
5
votes
4 answers

GData youtube video upload missing audio issue

I am using following code to upload .mov file to youtube. It upload successfully but the video don't have any audio. Please tell me if I am doing something wrong.... - (void)uploadVideoFile { NSString *devKey =…
objectivecdeveloper
  • 1,050
  • 11
  • 29
5
votes
1 answer

How to fix Perl warning message when loading gdata package?

I've updated Strawberry Perl 64-bit 5.30.2001 and the gdata package. Now, when loading library(gdata) I always get this warning messages which appear to be related to Perl. suppressPackageStartupMessages(library(gdata)) # Warning messages: # 1: In…
jay.sf
  • 60,139
  • 8
  • 53
  • 110
5
votes
2 answers

YouTube API: How can I get the date/time in which a user marked video as favorite?

I'm accessing the feed of a user's favorite videos through the YouTube API. How can I get the date/time in which he marked each video as favorite? Update: Someone pointed out that the YouTube API documentation says that the "Published" date on a…
Ram Rachum
  • 84,019
  • 84
  • 236
  • 374
5
votes
1 answer

gdata unknown authorization header

I'm writing a web app to autopost on google buzz. I wrote a C# library to manage with "Oauth dance" and in it works fine, I can get oauth_token and oauth_token_secret. I used www.googlecodesamples.com/oauth_playground/ to validate my oauth_token…
Stefano
  • 273
  • 1
  • 2
  • 8
5
votes
2 answers

C# application - Read Google Contacts

Since Google stopped support for their older Auth, and now we have to use oAuth 2, our simple desktop application can no longer read contacts from my google account. Fine - i understand this, however this new oAuth 2 is extraordinarily…
Conrad de Wet
  • 477
  • 6
  • 15
5
votes
1 answer

Zend Gdata - missing HeaderValue.php

So I am following this and I'm trying to run his first php example. I get the following error: PHP Warning: require_once(Zend/Http/Header/HeaderValue.php): failed to open stream: No such file or directory in…
Bill Garrison
  • 2,226
  • 3
  • 34
  • 75
5
votes
1 answer

gdata spreadsheet library for python not working anymore?

I was trying to run a query for data in one of my google docs, and it's worked for several months. Starting yesterday or the day before, I noticed that my script no longer works. Has Google updated their api for spreadsheets? Has anybody found a…
ldanielw1
  • 331
  • 5
  • 15
5
votes
2 answers

Google's Oauth for Installed apps vs. Oauth for Web Apps

So I'm having trouble understanding something... If you do Oauth for Web Apps, you register your site with a callback URL and get a unique consumer secret key. But once you've obtained an Oauth for Web Apps token, you don't have to generate Oauth…
LetMyPeopleCode
  • 1,895
  • 15
  • 20
5
votes
1 answer

Add multiple rows into google spreadsheet using API

I need to add multiple (few hundreds) rows into google spreadsheet. Currently I'm doing it in a loop: for row in rows _api_client.InsertRow(row, _spreadsheet_key, _worksheet_id) which is extremely slow, because rows are added one by one. Is…
damgad
  • 1,446
  • 9
  • 24
5
votes
1 answer

Retrieving data from Google Analytics API using .NET/C#

I'm trying to retrieve data from google analytics with a local console app. Im able to extract some data without having to log in to google account and only using the API. The problem is i'm not getting the right values and im not sure how to format…
WhoAmI
  • 1,188
  • 6
  • 17
  • 47
5
votes
0 answers

Insert new cell in google spreadsheet using GData API in iOS

After finally figuring out how to pull data from google spreadsheets, I can't understand how to add new entries to the end of file. Here's what I want to achieve: My app should send some survey results to a google spreadsheet, here's how the file…
Sergey Katranuk
  • 1,162
  • 1
  • 13
  • 23