gdata

Access Gmail atom feed using OAuth

Hi, I'm trying to grab the Gmail atom feed from a python application using OAuth. I have a working application that downloads the Google Reader feed, and I think it should simply be a matter of changing the scope and feed URLs. After replacing the URLs I can still successfully get Request and Access tokens, but when I try to grab the fee...

gdata api not working on certain environment

I have a java app packaged as a war which uses the gdata api. It works fine on several machines except one, where all gdata calls fail. It throws AuthenticationException for each gdata request. I've taken care to ensure all the oauth credentials are set correctly and have deployed the exact war on other systems using the exact same proce...

How to parse ZendGData Picasa GPhotoTimestamps in PHP

So, i'm having a lot of trouble with this little piece of code. An example timestamp is this: '1278509422000'.. the problem is that it comes in as a string and I have to convert it somehow. I know about the problem with milliseconds and have tried dividing by a 1000 and much more (intval/floatval) but it just will not become a correct da...

jQuery + Google API + IE8 error

The following function works perfectly on our production site function flickrGetPhotos(){ $.getJSON("http://api.flickr.com/services/rest/?method=flickr.photosets.getList&api_key=" + flickrApiKey + "&user_id=" + flickrUserId + "&format=json" + "&per_page=" + galeriaSetsPerPage + "&jsoncallback=?", function(data){ flickrBuild...

GoogleService OAuthCredential setter giving CTE

Hi All, I am trying to execute the following OAuth example of g-data trunk :- http://code.google.com/p/gdata-java-client/source/browse/trunk/java/sample/oauth/TwoLeggedOAuthExample.java /* Copyright (c) 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in complia...

Android: How to use the Google Base Data API within an Android Application

I want to use the Google Base Data Api to search for snippets and download these informationen to show them in my activity. I know that the project is still in Google Code Labs, meaning it is in a formative state. But I wonder if there is already a version that i can implement in my Android Application. I know that I can try to do queri...

Find partnership status in Gdata Feed?

Using Gdata RSS Feed, I want to control for the role of the author. I want to control for a partnership with google. On this page by Google it says there is a reference: http://code.google.com/intl/nl/apis/youtube/2.0/reference.html <media:credit role="uploader" scheme="urn:youtube yt:type="partner">partner_name</media:credit> But in ...

How to upload pdf and pptx files to google docs via the gdata python client?

Hi there, world I'm using the gdata python client for the google docs api for a project. I use oauth authentication and all the dance, and have successfully uploaded .doc, .xls and every file type in Their FAQ. but I cannot seem to upload pdf files, even though is right there, listed on the supported filetypes. I tried with the latest ...

GData & Multiple Accounts Selection

Hi guys, i am using the Python lib to access Gmail and Contacts. Is it possible to bypass the screen that allows the user to select among multiple google accounts. I already know the account he wants to import so I ld like to display the Grant Access screen after the redirection as some other apps do. The code i use now is: google = gd...

Zend_Gdata_Photos listing all albums and photos

I'm using the Zend_Gdata_Photos PHP client to access the Google Picasa API, trying to just do something very simple, list all the albums, and then list all the photos within each album. This is my code: $client = Zend_Gdata_ClientLogin::getHttpClient('*****', '*****', Zend_Gdata_Photos::AUTH_SERVICE_NAME); $gp = new Zend_Gdata_Photos($c...

getting exception when inserting events in android calendar.

i am inserting events in my android calendar. the code is following: ContentValues event = new ContentValues(); event.put("calendar_id", calId); event.put("title", "Event Title"); event.put("description", "Event Desc"); event.put("eventLocation", "Event Location"); event.put("allDay", 1); event.put("eventStatus",...

@selector() not working? youtube API GData issues....

Hey Guys, I'm trying to integrate GData/YouTubeAPI into my project but I'm a bit stuck. I used the code that was given in this post: http://stackoverflow.com/questions/3066131/any-examples-tutorials-on-using-google-gdata-api-youtube-on-iphone My problem is that the function 'request:finishedWithFeed:error:' is not called when the GDat...

YouTube UITableView from a search query using GData

Hello, I'm trying to customize a table view to display a feed of youtube videos based on a search query. I found this code http://pastebin.com/vmV2c0HT which displays a feed of a YouTube channel in a tableview, it works fine. However, when modifying the viewDidLoad function to search for a query instead of a user feed, I always end up w...

I am trying to upload the document from my site to Google Docs using Zend Gdata library, but it gives below error.

I am trying to upload the document from my site to Google Docs using Zend Gdata library, but it gives below error. Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, got 400 Inconsistent repeating query parameter ' Thanks in Advance and please ignore my english errors. ...

Google Docs API and Python: How to change the owner of a document?

I am using the gdata-python library to perform a number of operations via the Google Docs API. This library uses version 2 of the protocol, which does not support changing the ownership of a document. Has anyone managed to find a successful workaround which lets them change the owner of a document using the version 2 API? One idea I th...

Make a Post Request using Java client to the Google Documents List API using gdata.

Hi, I was wondering if anyone could help me... I want to copy a document as mentioned here http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#CopyingDocs I am using the latest Java Gdata Library, which doesn't have a nice wrapper method to do it, and I am a newb to the java gdata lib. I have already got an...

How to authenticate users into internal application with Google Apps

I am creating an application within our company that handles all our processing. This will need to implement Google Apps (we have premier). I'm having a hard time figuring out the best way to authenticate user. I need full access to ALL their information (add, delete, modify [calendars, emails, contacts[, password?]]). I'm wanting to d...

Why isn't gd:visibility present in Google Calendar?

According to the docs, gd:visibility should be a property on Google Calendar feeds? When I'm in Google Calendar and go to settings for a specific calendar, I copy the XML address, i.e: http://www.google.com/calendar/feeds/myemail%40domain.com/public/basic and change it to: http://www.google.com/calendar/feeds/myemail%40domain.com/publ...

gdata unknown authorization header

Hi, I'm writing a web app to autopost on google buzz. I wrote a C# library to manage with "Oauth dance" and in it works fine, I can get oauth_token and oauth_token_secret. I used www.googlecodesamples.com/oauth_playground/ to validate my oauth_token and oauth_token_secret and it works fine. I tested it with GET and https://www.googlea...

Using the GData .NET Client Library with .NET-Framework Version 4

I'm trying to include the YouTube Search in one of my .NET applications with framework Version 4.0. Unfortunately, the GData .NET Library currently only supports .NET 2.0. Is it possible to get around this limitation, possibly by writing something like a "wrapper" or by using another library that is not too distinct from the original one...