tags:

views:

333

answers:

2

What is a good way to implement the Google ClientLogin scheme below on Android?

http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html

My understanding is that Android does not support the GData API. So I wanted to say, login to my Google books account, will I be able to do it using Android and the reference above? What classes should I be looking at in the Android SDK? (I am using Android 1.6.)

+2  A: 
Christopher
+2  A: 

EDIT: Sorry I didn't see you specifically requested the ClientLogin scheme, which seems to be deprecated. Any strong reason why you would want to use that and not OAuth?

Yes, you can. I've written an OAuth Java implementation (Signpost) which does exactly that. We use it in Qype Radar so users can connect Radar with their Qype accounts without the app having to remember usernames and passwords.

It also works with the Google Web services, I've tested that.

Matthias
I don't know too much about ClientLogin vs OAuth, but will read up. Thanks for the tip.
M-Y