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

Query Events from Multiple Google Calendars in Single Batch

Is there a way to query for events in multiple calendars (in the same Google account) in a single batch request? I've been through the Google documentation here, but it hasn't really helped. What I'm trying to do really is scan through a given…
jarcoal
  • 1,445
  • 2
  • 16
  • 19
3
votes
1 answer

How to use DotNetOpenAuth to log into Google, and get user profile

I just want to login with google and want access logged in user's general profile like photo, email address and name, to display on my site. Is it possible with DotNetOpenAuth?
Nps
  • 1,638
  • 4
  • 20
  • 40
3
votes
1 answer

iphone GData spreadsheet unrecognized selector

I've used the GData spreadsheets code for MAC to write a corresponding iPhone version (the same code), but I get a exception thrown: [GDataEntryBase worksheetsFeedURL]: unrecognized selector sent to instance ... It appears to me that when fetching…
3
votes
2 answers

GWT - Way around Access-Control-Allow-Origin?

I'm making an internet application with GWT, and one of the features that I've been stuck on for a few weeks is getting the users contact data from google data. I've tried things like GWT-GData and they don't seem to play nicely with the current…
spierce7
  • 14,797
  • 13
  • 65
  • 106
3
votes
2 answers

Oracle java stored procedure

I'm trying to make a Java Stored Procedure in Oracle 11g which retrieve Google Analytics information. Working on this for three days now, but without success. Here is step by step what I did: Uploaded the 5 required JAR files, here link, to the…
Kevin Vermaat
  • 311
  • 2
  • 4
  • 18
3
votes
1 answer

Using Oauth and Gdata to build a simple application in Java

I am trying to create a simple app on the app engine where users log in through their Google account, and then it adds an event to their calendar. And I am using Java along with Eclipse for this. I have found a simple code online: public void…
Manoj Reddy
  • 146
  • 1
  • 6
3
votes
2 answers

How can I post to posts and pages on a blogger blog using Ruby?

I am looking to automate some functionality on my blogger blogs and would like to use Ruby to do it. What do I need to look into to post both blog posts and bogger.com's newer "Pages" feature? Updated: Based on quick googling it looks like there…
srboisvert
  • 12,679
  • 15
  • 63
  • 87
3
votes
3 answers

Remove from a string all except selected characters

I want to remove from a string all characters that are not digits, minus signs, or decimal points. I imported data from Excel using read.xls, which include some strange characters. I need to convert these to numeric. I am not too familiar with…
J. Win.
  • 6,662
  • 7
  • 34
  • 52
3
votes
1 answer

Error 403 uploading a file to Google Docs with Python

I'm having a 403 error when trying to upload a file to Google Docs with Python / gdata-2.0.13: import gdata.docs.data import gdata.docs.client client = gdata.docs.client.DocsClient(source="MyUpdater") client.ClientLogin("mymail@gmail.com", "mykey",…
PabloG
  • 25,761
  • 10
  • 46
  • 59
3
votes
1 answer

ClassNotFoundException for included dependency

I'm using maven to include the google gdata module in my project and everything compiles fine, but I get this runtime exception: Exception in thread "main" java.lang.NoClassDefFoundError: com/google/gdata/util/ServiceException at…
exxodus7
  • 562
  • 1
  • 9
  • 27
3
votes
3 answers

Using Android AccountManager to get authtoken for gdata

So I am trying to sync to google docs, without having to ask the user for his credentials. I use this code to get an auth-token: AccountManager mgr = AccountManager.get(activity); authToken = mgr.blockingGetAuthToken(account,…
pgsandstrom
  • 14,361
  • 13
  • 70
  • 104
3
votes
1 answer

How to change the request URL from Zend_Gdata_Youtube to actually work on API v3?

I think this may sound weird, but I have an entire web application using Zend Framework connecting to Youtube's former API. The thing is that I have a bunch of code, a lot of things working on this code, and it seems that Zend is not updating this…
Pablo Zehle
  • 386
  • 1
  • 5
  • 14
3
votes
2 answers

What is the correct mechanism to authenticate to Google in a standalone Python script?

I've got some code that I'm using to extract email address from Gmail contacts into text file. It's a simple Python script that runs in a cron job, and is based on the Python gdata library (currently v2.0.18). As of earlier this month, this no…
Ken Pronovici
  • 774
  • 1
  • 8
  • 20
3
votes
0 answers

how to renew access token with gdata python

I'm trying to switch my picasa app to oauth2.0 . from gdata.gauth import OAuth2Token token = OAuth2Token( client_id=client_id, client_secret=client_secret, scope=scope, user_agent=useragent) url =…
boygiandi
  • 630
  • 10
  • 20
3
votes
0 answers

Issues with getting data from Google Spreadsheet with Zend Gdata - Empty result

I am trying to connect with Google spreadsheet using zend GData library as below code // Google user account $username = GOOGLE_USERNAME; // Your google account username $password = GOOGLE_PASSWORD; // Your google account password // Document key…
Prashant
  • 29
  • 5