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

995 questions
299
votes
17 answers

Not receiving Google OAuth refresh token

I want to get the access token from Google. The Google API says that to get the access token, send the code and other parameters to token generating page, and the response will be a JSON Object like : { "access_token" :…
Muhammad Usman
  • 9,182
  • 21
  • 69
  • 104
101
votes
30 answers

Android java.lang.VerifyError?

In my Android app, I always get VerifyErrors! And I cannot figure out why. Whenever I include a external JAR, I always get VerifyErrors when I try to launch my app (except for once, when I included Apache Log4j.) I usually get around this by taking…
Isaac Waller
  • 32,041
  • 27
  • 93
  • 107
80
votes
9 answers

Get refresh token google api

I can't get my refresh token with my code. I can only get my access token, token type etc., I have followed some tutorials like putting access_type=offline on my login URL: echo "
Robin Carlo Catacutan
  • 11,461
  • 9
  • 48
  • 79
18
votes
1 answer

iPhone libxml2 undefined symbols (with gdata, kissxml, touchxml, etc.)

I'm trying to use any one of the libxml based 3rd party XML parsers, but I can't because I think I have a libxml2 problem of some sort I set my other linker flags to -lxml2 and header search paths to /usr/include/libxml2 but I still get a ton of…
dougalg
  • 464
  • 3
  • 13
14
votes
4 answers

Google.GData.Client.GDataRequestException - Authentication suddenly fails in old code

I'm suddenly starting to get the following exception when attempting to authenticate and access a spreadsheet on Google drive: Unhandled Exception: Google.GData.Client.GDataRequestException: Execution of aut hentication request…
Molecool
  • 444
  • 1
  • 4
  • 14
13
votes
2 answers

Dates from Excel to R, platform dependency

I'm importing xls files using gdata. I am converting date columns using as.Date to convert the date As per the manual for as.Date, the date origin is platform dependent, and so I am determining which origin to use accordingly .origin <-…
Ricardo Saporta
  • 51,025
  • 13
  • 129
  • 166
12
votes
0 answers

Picasa web albums - impossible to list all photos

I've uploaded about 40k photos using the Google Photos uploader tool, and now I'm trying to get a list of those photos using the Picasa Web Albums Data API (as there is no separate Google Photos API that I'm aware of). So far, it appears impossible…
Dave Brueck
  • 121
  • 5
11
votes
2 answers

When authenticating with oAuth and youtube, always get error : invalid_grant on 2nd auth attempt, why?

As of yesterday, my application is able to authenticate with google (youtube) via oAuth 2.0 the first time no problem but the 2nd time (re-authentication, same app + same user), when I exchange the requestToken for an accessToken I get an…
Shizam
  • 9,507
  • 8
  • 47
  • 81
11
votes
3 answers

Show YouTube private videoes only for website users

I have experience with YouTube API. But I always used it for public videos. Now. what I want to achieve is, to make video on my YouTube channel TOTALLY invisible (in other word private) and shows this video only to website users. Is that possible…
heron
  • 3,337
  • 22
  • 73
  • 142
10
votes
1 answer

How to propagate reminders for a google calendar event created via the gdata python api?

I'm working on a python app that uses the gdata to programmatically create and mantain a calendar for groups of people. Everything works OK, except for the reminders in shared calendars. Some context: when you create a new project, a google calendar…
lfborjas
  • 296
  • 3
  • 15
10
votes
2 answers

Import password-protected xlsx workbook into R

How can I import a worksheet from a password-protected xlsx workbook into R? I would like to be able to convert an Excel worksheet into a csv file without having to go through Excel itself. It is possible for xls workbooks using the perl-based…
user1922462
  • 101
  • 1
  • 3
10
votes
1 answer

Accessing an item beyond start_index=1000 in a YouTube user upload feed

I am currently trying to pull data about videos from a YouTube user upload feed. This feed contains all of the videos uploaded by a certain user, and is accessed from the API by a request…
Jonathan Evans
  • 946
  • 1
  • 8
  • 20
9
votes
2 answers

Different Python Google APIs

I am trying to figure out the difference between Google's GData API ( http://code.google.com/p/gdata-python-client/ ) and Google's APIs Client Library for Python ( http://code.google.com/p/google-api-python-client/ ). They both seem to be by Google.…
Alexis
  • 19,151
  • 17
  • 91
  • 134
9
votes
2 answers

YouTube API - Querying by publish date

I'm writing a webapp that uses the YouTube Code API to do specific types of searches. In this case, I'm trying to search for all videos that match a query, and which were uploaded between two dates. This document says I can use published-min and…
tsilb
  • 7,534
  • 13
  • 64
  • 94
9
votes
2 answers

How to get the Worksheet ID from a Google Spreadsheet with python?

I'd like to identify a method to attain the Worksheet ID within the URL for each of the worksheets within a Google Spreadsheet Workbook. For example, the worksheet id for 'sheet2' of this workbook is '1244369280' , since it's url is…
Chris
  • 4,194
  • 9
  • 52
  • 100
1
2 3
66 67