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
9
votes
3 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
  • 5,444
  • 16
  • 63
  • 119
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
2 answers

Haskell REST/GDATA API library

Is there available REST api library for haskell? I need it primary for google gdata client, but will probably use it for other purposes too. I know there is HTTP library, but I need something more high level, which supports things like json…
Marko
  • 30,263
  • 18
  • 74
  • 108
8
votes
4 answers

Loading a generic Google Spreadsheet in Pandas

When I try to load a Google Spreadsheet in pandas from StringIO import StringIO import requests r = requests.get('https://docs.google.com/spreadsheet/ccc?key=&output=csv') data = r.content df = pd.read_csv(StringIO(data),…
Amelio Vazquez-Reina
  • 91,494
  • 132
  • 359
  • 564
8
votes
2 answers

Using OAuth2 with service account on gdata in python

I want to use data.photos.service.PhotosService to push and pull photos from Picasa. I got a service key file XXXXXXXX-privatekey.p12 from Google console and am now trying to authenticate using said key with google. The documentation for OAUTH2…
Nielsvh
  • 1,151
  • 1
  • 18
  • 31
8
votes
6 answers

retrieve list of all labels in blogger

Is there a way to use gdata api to retrieve the list of all labels in a blogger? I need to create a menu based on that list, but cannot simply list all posts and get it, because it is a busy blog and has more than 2000 posts.
Johnny Everson
  • 8,343
  • 7
  • 39
  • 75
7
votes
4 answers

Unable to Connect to ssl

I have configured the openssl with wamp (Apache server). But while I using gdata api I'm getting following error. ( ! ) Fatal error: Uncaught exception 'Zend_Http_Client_Adapter_Exception' with message ' in…
Neelesh
  • 1,458
  • 2
  • 13
  • 20
7
votes
1 answer

Retrieve data from public Google Spreadsheet using gdata library?

I'm working in Python and trying to retrieve data from a public Google Spreadsheet (this one) but struggling a bit with the developer documentation. I'd like to avoid client authentication if possible, as it's a public spreadsheet. Here's my…
Richard
  • 31,629
  • 29
  • 108
  • 145
7
votes
1 answer

jQuery.getJSON not working properly in IE8 with gdata json-c. Why?

Using jQuery: $.getJSON('http://gdata.youtube.com/feeds/api/videos/b2-5GSjZvW8?v=2&alt=jsonc', function(meta){alert(meta.data.title);}); Firefox and Chrome both work as expected, but IE keeps triggering the error function (when using $.ajax)…
producerism
  • 344
  • 4
  • 17
7
votes
4 answers

Ruby script to download private google docs

I would like to write a script in Ruby (using the gdata gem, rest-client gem or just straight Net::HTTP) to authenticate with my google docs using gmail-userid/password, and then download a list of private documents and documents. The GData…
Jay Godse
  • 15,163
  • 16
  • 84
  • 131
7
votes
1 answer

Admin Settings API with oauth2 in gdata and python

Admin Settings API with oauth2 I'm trying to connect an app written in python to Admin Settings API with OAuth2 credentials but I get an error: source code: from oauth2client.client import Credentials import gdata.apps.adminsettings.service import…
cprietorod
  • 211
  • 1
  • 7
7
votes
0 answers

Trying to do batch update to Google spreadsheet using gdata python libraries

I have been trying to figure this out for a while now and just dont seem to be able to break through so hopefully someone out there has done this before. My issue is that I am trying to do a batch update of a google spreadsheet using the gdata…
Rick
  • 73
  • 4
6
votes
2 answers

Using the OAuth Access Token from django-social-auth with Google data api (calendar)

I'm trying to use the OAuth Token I get from django-social-auth to access the users calendars. So in the django-social-auth configuration I set: GOOGLE_CONSUMER_KEY = 'anonymous' GOOGLE_CONSUMER_SECRET = 'anonymous' GOOGLE_OAUTH_EXTRA_SCOPE =…
Kai
  • 2,205
  • 3
  • 32
  • 43
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
1
2
3
66 67