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...
| ||||
|
feedback
|
|
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. | |||
feedback
|
|
Here is example which describes OAuth authentication with google... Looks like it's most appropriate way to implement what I need. | |||
|
feedback
|
|
You can use the build in AccountManager:
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:
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) | |||
|
feedback
|