I want to ask, what is the best way to authenticate user with his Google account already configured on the phone. I have looked at the ClientLogin first, but it's not what I want because it requires users to enter login/password in my application. I can do it with OAuth but there I should ask user to enter his credentials in browser what is not preferable too. I want to use AccountManager (I've observed that it contains method getPassword for particular account but it didn't work for me), if it's possible to use somehow AccountManager + ClientLogin or AccountManager + OAuth tell me please. In result I want to have capabilities to log in with user Google account without asking his login/password (with confirmation on android device of course) I am not sure that it's possible but if there exists some way to implement this please point me how...

link|improve this question

40% accept rate
feedback

3 Answers

From a stackoverflow question in feb2010: Anyway to Authenticate a user using Google Apps in an Android application?

and the article blog post: http://javagwt.blogspot.com/2009/12/authenticating-android-app-to-google.html

Remember, the difference now is that Google does two-step authentication now so you might have to modify some steps.

link|improve this answer
I have read this already... to be more specific I understand how to do it with OAuth mechanism which is good way to authenticate with other services like a twitter, but google accounts already supported in android phone, and I want to ommit that step where user should enter his credentials and leave just confirmation that my application will use his account to retrieve data... what else... I plan to retrieve data not from app engine but from google tasks – endryha Nov 17 '10 at 10:51
feedback

Here is example which describes OAuth authentication with google... Looks like it's most appropriate way to implement what I need.

https://docs.google.com/leaf?id=0BztL1R2scjctYmYwYjM2MmQtNGNlZC00MzNmLTllYzUtZjg4YWFkODU3ZWMw&hl=en_GB&authkey=CMHK1dAG&pli=1

link|improve this answer
feedback

You can use the build in AccountManager:

  Account[] accounts = accountManager.getAccountsByType("com.google");

Then extract the account you want from the returned list. The next step would be to call AccountManager.getAuthToken (see [here][1])

Once you have the authToken, you can pass it on to Google APIs by calling:

api.setUserToken(token);

as opposed to the setUserCredentials that require the user and password.

[1]: http://developer.android.com/reference/android/accounts/AccountManager.html#getAuthToken(android.accounts.Account, java.lang.String, android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback, android.os.Handler)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.