google-data-api

How do we read the data from a public google spreadsheet using Zend_Gdata

I have read the examples here: http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html But those examples assume the spreadsheet to be read needs authentication: $service = Zend_Gdata_Spreadsheets::AUTH_SERVICE_NAME; $client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service); $spreadsheetService = new Zend_Gdata_S...

Google Data API

Two questions: How do you get events from a specific Calendar? The following link gets events for your primary calendar: http://www.google.com/calendar/feeds/[email protected]/private/full . And how do you get a contact's birth date from the list of ContactEntry objects that is returned to you when using the ContactsService? Thanks in ad...

Google Data API on Symbian

I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc. Is there any way to install Google Data APIs Python Client Library on Symbian ? ...

Scraping Google docs (can't use API)

I'm building an iPhone app which needs a peice of meta data from a user's Google Spreadsheet. Unfortunately the meta data I need is not exposed by the API, so I will need to scrape it from the document's HTML source (it would not be present in any of the exported variants). Is there anyway to include authentication parameters in a call ...

How to select specific Google Calendar through Google API

How to select non-primary calendar using Google's Calendar API? I can see from documentation you can get full list of calendards, but nothing about how to select specific one. For example I have calendar with title 'My Calendar_1' I don't want to iterate over all calendars to check each name. Seems to be it should some how use Query...

Caching pictures from Picasa

Hello all, I'm creating an offline-capable IPhone app for showing pictures on picasa. It was pretty simple to use JQTouch and Google Data API (via JSONP), so I was able to show the albums and thumbnails in 3 hours, however I want that data to be cached, and for that I'm going to use the HTML 5 Application Cache (via xxx.manifest file). ...

How can I query Google Spreadsheets API with a string value?

I am using Zend_Gdata_SpreadsheetsListQuery. In PHP my query is: "confirmation=$confirmation" The problem is that $confirmation = 'AB-CD-EFG-012345'; Apparently the hyphens are causing problems with the query and the exception thrown is: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, go...

Twitter oauth problem with frindship/create in api

Hi, I am using Google Data API sample touch application, which is available at code.google.... I am having a problem can any one help. Please tell me if I am doing some thing wrong. The user who has loged in has to follow some person XYZ (just using XYZ for security purpose). I am using the URL urlStr = @"http://api.twitter.com/1/f...

Google SQL Pivot make 0 show NULL

I have a pivot table that I need to have return NULL whenever there is not a value in the database. This seems pretty simple when you look at the Google API for their query language: http://code.google.com/apis/visualization/documentation/querylanguage.html#Pivot The Google example is the first image. Notice how it contains null, th...

Google Provisioning API: read-only access without admin account. Possible?

For my project I need to have read-only access for my GApps-for-Domain domain-specific data. E.g. retrieve all users, their details, domain groups etc. Seems, that is not possible without providing domain administrator's login and password. As I understand it means I must have admin account credentials listed somewhere in my code. This ...

bug with the blogger api?

Hey guys, I have a blog whose last post was dated 02/08/10 1:22pm. When I use the following query, http://www.blogger.com/feeds/23853089/posts/default?published-min=2010-08-02T12:22:00 I set the minimum published date to 12:22pm but no post are shown! I have tried this is several blogs and set the min.date to few mins/hrs before...

invalid rfc 3339 timestamp format?

Hi, I inserted this timestamp as part of the blogger query: http://www.blogger.com/feeds/26861498/posts/default?published-min=1937-01-01T12:00:27.87+08:00 It returned me an invalid pub-min format error. But as far as I know, this time format looks alright! can anyone help? ...

Google Calendar Javascript API "grant access" page

Hi, I am using the Google Data API in Javascript to access google calendar. But when I grant the access to the website for accessing my calendar, it should return to my first HTML page, but this doesn't happen and it redirects it to the same grant access page. Anyone encountered this situation? Thanks, Sana. <!DOCTYPE html PUBLIC "-/...

How can Google Data js-client access feeds without any same-origin-policy issue?

I've been reading about the JavaScript Client Library for Google Data Protocol and it seems that it can access any Google service that has a proper interface (Docs, Spreadsheets, Calendar etc.) If I use this client in my own application hosted on my own domain, how does the js client library get around the same-origin-policy that seems ...

Ruby on Rails 3 and Google Book Search

I'm trying to get started using the Google Data API for Google Book Search in my Ruby on Rails 3 application, and I don't even understand how to get started. What gems do I need? What do I need to do in order to do something simple like searching for books with a title of Foobar? ...

Using Google App Engine how to upload document in google docs (python)

This question was asked before at : http://stackoverflow.com/questions/3082683/using-google-app-engine-how-to-upload-document-in-google-docs-python However it was not answered then. Anyone got any clues how to get it done. I have looked at the apis and the documentation but couldn't find an easy way to do do. Currently it is easy to ...

Accessing Unlisted Map with Google Maps Data API in Javascript

How do you retrieve unlisted "My Map" data using the Google Maps Data API in Javascript without needing to authenticate the user? I want everyone that goes to my website to use the same map feed. Thanks ...

Accessing Google Data with C++

Hi everyone. I'm about to write an simple plugin for Total Commander. I need to interact with Picasa service. I goggled for a while and found: 1) gdata-cpp-util (kind of a wrapper for libcurl and libxml) http://code.google.com/p/gdata-cpp-util/ 2) use gdata-java-client for Google Data transmitting and interact with c++ code via JNI ht...

How do I go about creating an "Ecommerce Store" using Google Apps

I need a quick answer for an inquiry I just received. Someone has specified that he needs to use Google Apps for the following features: E-commerce Store Store Locator by zip code Is it possible to create an e-commerce website using google apps? And if so, where do I begin with? If anyone has an experience please do share. ...

Does anyone know how to get Zend_Gdata_Calendar to fetch events for secondary calendars?

I have got as far as using ClientLogin to log in to the Google Account, I can retrieve a list of the calendar names for this user (using the example code on the Dev Guide). This is great. However, when I demand a list of events (again using Google's example code) only the events for the primary calendar are returned. If it is the case ...