gdata-api

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...

Gdata youtube api for objective-c - getting videos playable in iPhone

Hi I am using the gdata library in my iPhone app to search for some youtube videos. Now most of the videos come up fine but some videos are not compatible for playback with the iPhone. I am using a webview to embed the video. In case of videos which cannot be played on the iPhone, they show up in the webview without a preview and just ...

gzipped GData POST requests

Is somebody managed to upload gzipped GData POST/PUT requests to Google? Is it even supported or possible? I guess it should be simple as just defining Content-Encoding header with "gzip" but I just get 400 bad requests. ...

How to get Blogger post comments for URL using API or anything else?

I have been looking for a way to get the comments from a Blogger blog if I have a regular URL. I know you can get the blogID by scraping the html, which is somewhat unpleasant but has a few standard ways to get it. The problem is that I have not been able to find a way to get the comments for a specific post if I have only the post URL a...

Getting group names your contacts belong to using the gdata module

Hello I am trying to find out how to get the title of groups the contact belongs to. This is how I am getting my other contact information: query = gdata.contacts.service.ContactsQuery() query['showdeleted'] = 'true' query.updated_min = str(lastKnownTime) query.max_results = 5000 feed = gd_client.GetContactsFeed(query.ToUri()) insertCo...

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",...

blogger (python) API - How to query none draft blog entry

I would like to retrieve through the python blogger API the list of published (not draft) blog entry from my blog. What parameter do I need to add to specify draft=false. query = gdata.blogger.client.Query() query.max_results = 3 feed = bc.GetPosts(blog_id=blog_id, query=query) ...

How to list all the files which are in google docs in android using gdata-client? (like mp3,jpeg,png)

Is it possible to list all the files of the google docs in android using gdata-client? public class GoogleDataExample extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); try ...

YouTube Java API problems

I'm trying to get a list of videos by a certain user using the YouTube Java GData library/API. However, when I try to create a service by using YouTubeService service = new YouTubeService("Cyphon-MyCampusPulse-1", YOUTUBE_API_KEY);, I get the following runtime exception: Exception in thread "main" java.lang.NoClassDefFoundError: javax...

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...

Is it possible to have gdata (Google Data API) connect via specified user?

I'm creating a site where people can upload videos to youtube through my website. But instead of uploading via the account that the users have, I want the file to be uploaded from my account instead. So the users wouldn't even have to view the authentication process since it's auto-signed in to the specified account. Is this possible? ...

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...

error getting google contacts using gdata authSub with java

I can successfully get a google AuthSub Token But on running this code im getting the exception java.lang.NullPointerException: No authentication header information The code is ... .... ContactFeed contactFeed = getContactList(token); ... .... public ContactFeed getContactList(String token) { ContactFee...

Parse youtube playlist on iphone sdk/ iOS

Since Days i'm trying to parse a YOUTUBE-XML-Feed by using GDATA-API for iOS. http://code.google.com/intl/de-DE/apis/youtube/2.0/developers_guide_protocol_channel_search.html NSDictionary *namespaces = [NSDictionary dictionaryWithObjectsAndKeys: @"http://www.w3.org/2005/Atom", @"", @"http://schemas.google.com/g/2005"...

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, DocsService.DOCS_SERVICE, true); This returns a auth-token that looks well-formated. So on my DocsService I ru...

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 ...

GData Workspace Document

I have an application that currently uses Apache Abdera to parse Atom Pub documents (Workspace, Collection, Feed, Entry) - and want to switch the the GData Libraries, mainly to get rid of a lot of dependencies and I have found the GData calls to be consistently faster. Anyway, I cannot figure out how to generate some of these document t...

Google Spreadsheets API via Ruby

I wrote a script here to access a Google Spreadsheet by name using Ruby: http://gist.github.com/606488 I'm trying to use gdata as per the instuctions here: http://code.google.com/apis/gdata/articles/gdata_on_rails.html How come I'm getting a 401 error "Token invalid" when using the gdata gem? It works fine when I use the methods descr...

Using gdata-api, when I export a presentation using the "png" exportformat, I get back just the first slide's image.

Hi, Have any of you encountered this? I am using gdata-api (GData-Version: 3.0, python library v2.012) to download a google docs presentation as a bunch of images (one image per slide). However, when I download a presentation using "exportformat=png", I only get an image of the first slide ! Is there any workaround to get all the pages ...

Picasa in iPhone using GData

Hi, i have to implement Picasa client for iPhone. I have few queries in that regards. Are the api deprecated now? What if I still implement them now? Where can I find good tutorial on the same. I don't know anything about implementing google data. Also I am a newbie for iPhone development. Also I came across a few pages which said that t...