There's no ClientLogin class in the android public api, but you can easy implement it with the instructions that are posted here: http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html.
If you are targetting android 2.0 up only, you should use the built in AccountManager to get the token that you'd otherwise get from ClientLogin. I know because I just added that for my own app :) On Feb 6, 4:38 am, Jonathan Nalewajek <[email protected]> wrote: > I am working on an app where the user inputs some numbers, my app > performs a few relevant calculations, and displays the result. > However, I would like it if the user could somehow save this value to > a Google Spreadsheet. > > My problem is, I have no idea how to authenticate with Google. I have > been Goggle'ing this for awhile, and > found:http://code.google.com/apis/documents/docs/3.0/developers_guide_proto... > > However, when I try to use the command ClientLogin in my code, it > tells me this is undefined. I have the Build set to SDK 7, which is > Android+Google, and I have: import google.*; (I did this just to play > it safe); > > Anyway, I would appreciate any help I could get. If there are any > tutorials or code snippets out there that can help, please send me the > link. This is the first time I am attempting something like this (I am > a C++ developer who works on offline applications), so anything that > can help the learning process is greatly appreciated. > > Thank you! > -Jon -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

