How to use google account in my own android app?

I have an Android app that uses data stored in the Google appengines data store. Each user has their own data. Im looking for a good way to use google account for authentication and as primary key in database.

Can I use the AuthToken generated by the AccountManager? What is the best way to do this?

thanks a lot, Ray

+7
source share
1 answer

You can follow Nick Johnson's approach: http://blog.notdot.net/2010/05/Authenticating-against-App-Engine-from-an-Android-app .

And yes, you can use AuthToken from AccountManager.

+1
source

All Articles