google-data-api

How to correct Zend_Uri_Exception (YouTube API with PHP Zend Gdata)

I am using Zend Gdata to interface with the YouTube API from a PHP script. I actually had this working fine, and suddenly I am getting a fatal error about a 'Zend_Uri_Exception' with message 'Invalid URI supplied'. How can I correct the exception? CODE: require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata_YouTube'); $yt ...

Google App Engine cannot find gdata module

I can run a simple "Hello World" Google App Engine application on localhost with no problems. However, when I add the line "import gdata.auth" to my Python script I get "ImportError: No module named gdata.auth". I have installed the gdata module and added the following line to my .bashrc: export PYTHONPATH=$PYTHONPATH:/Library/Python/...

What is a GDATA extension profile?

I want to get the XML in atom format of a GoogleDocs spreadsheet using the [generateAtom(..,..)][1] method of the class BaseEntry which a SpreadsheetEntry inherits. But I don't understand the the second parameter in the method, ExtensionProfile. What is it and will this method call suffice if I just want to get the XML in atom format? ...

GData for my own API?

Hi StackOverflow! Im currently planning to build an API for my service. I want to use GData because it fits the application scheme and there are libraries for many programming languages available. The first question that rose: Am I allowed to do that? I mean, Google put lots of work into the GData specification and have some sort of cop...

How to get all the videos thumbnails and information shown in Youtube channel?

Hi all, I have a simple application which has to show the thumbnails of videos present at a particular channel and the links associated with them in a tableview, I have integrated google data api in my application also but I am unable to proceed further, I have also seen same type of question at this link But I am not able to get the c...

Can not get the Auth Token for GData After Authentication on App Engine

I would like to pull the Auth Token for the Gdata auth so that I can write to a google calendar. I am having issues getting the token after authentication so that I can send the token to the calendar service. I am using the default login screen provided by appengine (/_ah/login) and I am able to login and authenticate, however, I am una...

Get a exception of "error connecting with login URI" when running Google Data's example

When I run the example CalendarFeedDemo in the JAVA package of the Google Data API client library, I've encounterd a exception like this java -classpath "classes:lib/*" CalendarFeedDemo [email protected] mypassed http://www.google.com/calendar/feeds/[email protected] com.google.gdata.util.AuthenticationException: Error connecting with log...

Google Data API: what is the limit of Extended Properties?

Is there any limit on number of properties and value length in Extended Properties of Google Data API (in particular Calendar API)? ...

Reading a document's content from the gdata API?

Hi, I'm using the java library to access the gdata api. I just want to be able to print the contents of a document. I setup my project to list all the docs in my feed, now that I have a document listing, I want to print its contents: for (DocumentListEntry entry : feed.getEntries()) { // Ok, how do we print the doc's contents now? ...

GData API works in Android 2.0 SDK & up?

I used GData API to pull in Calender info. It works fine if I use 1.6. But the same code, if I change to Android 2.0 & up, it would throw AuthenticationException. Below is my code for ur ref: CalendarService myService = new CalendarService("My Application"); myService.setUserCredentials(args[0],args[1]); // Set up the UR...

gdata api + javascript library for accessing documents?

Hi, I wanted to do the following with the gdata javascript library: get a list of a user's documents. read the contents of a chosen document. edit its contents, update the document. If I'm reading correctly, this is not supported by the javascript library? I got this to work with the java library, but would like to push this functio...

Zend GData - seems really big

I've downloaded the Zend GData package to use the Google Calendar API. When I look through the contents of the package it seems to contain loads and loads of stuff. Do I really need all of it just for using Google Calendar and no other Google APIs? If not, what can i safely get rid of? ...

How do see subfolders when selecting files from a folder in Google Docs API?

Google provides the ability to search for folders with specific names. While this does search all folder trees for a folder with that name, I would like to search for a folder name that is already under a particular folder. Yet when I use the code that they show as an example on their site: function retrieveDocsInNamedFolder($gdClient, ...

Nullreferenceexception when adding a GData.Extensions.Reminder to Reminders

Hello again, I think the title says it all. I'm using Reminder fifteenMinReminder = new Reminder(); fifteenMinReminder.Minutes = 15; fifteenMinReminder.Method = Reminder.ReminderMethod.email; entry.Reminders.Add(fifteenMinReminder); on a brand new entry (where Reminder and Reminders are Nothing), but I cannot add a reminder using the ...

Getting Error "Namespace Name "Contacts" Does Not Exists" in spite of using using "Google.GData.Contacts"?

I want to create Contact on Google Apps. I am Using this API And referring this link In below code i am using "Using Google.GData.Contacts" : using Google.GData.Contacts; // Using Google.GData.Contacts using Google.GData.Client; using Google.GData.Extensions; using Google.Contacts; // at this place i am getting error Error...

Can I use google API to convert a PDF into PNGs?

I have noticed that when you view PDFs in google docs the PDF viewer renders the PDF file into PNG images. I was wondering if you could use Google Data API to upload a PDF and get the URLs of the rendered PNG files? I have never used the google API or really had the extra time to learn it, but if it help me do this it will be well ...

Java - Converting a datetime into gregorian calender time(date)

I am using google data api which gives date in datetime format. I want to convert this DateTime format date in Gregorian calendar date format. Does anyone know any methods for doing this? *Edited the question ...

Google search from within an iPhone app

Hey, I want to have the user enter a keyword in my app and then search google for this keyword, perform some logic on the results and display a final conclusion to the user. Is this possible? How do I perform the search on google from my app? What is the format of the reply? If anybody has some code samples for this, they would be grea...

Using Google Map Data API on the Android platform.

Hey Everyone, I was checking out the Google Maps Data API and I was wondering if I can follow their Java Development guide to use it on the Android platform? I want to display routes that I have created on Google Maps on the phone. Ideally this would be through a MapView but if I need to do it a different way I could. Thanks, Rob ED...

Gdata JavaScript Authsub continues redirect

I am using the JavaScript Google Data API and having issues getting the AuthSub script to work correctly. This is my script currently: google.load('gdata', '1'); function getCookie(c_name){ if(document.cookie.length>0){ c_start=document.cookie.indexOf(c_name + "="); if(c_start!=-1){ c_start=c_start + c_...