I'm developing an application on Android and i want to allow users to log in with their google account , can someone help me plz?
|
|
|
You might want to authenticate the user using one of the google account already configured in your device like some of the apps do, for that follow the below link - "Authenticating to OAuth2 Services" - http://developer.android.com/training/id-auth/authenticate.html Download Sample from Google - Android SDK Manager/Extras/Google Play Services In simple steps it does
This is another link which is good in explaining the process - http://android-developers.blogspot.in/2013/01/verifying-back-end-calls-from-android.html you can follow below steps for Login in your app
Below is response format of above "userinfo" call
If you want Email id along with that response you have to modify SCOPE = "oauth2:https://www.googleapis.com/auth/userinfo.profile"; to SCOPE = "oauth2:https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email"; in that sample |
|||
|
|
|
Take a look at http://developer.android.com/training/id-auth/index.html There you'll find a tutorial on how to use the Account Manager. (More specifically http://developer.android.com/reference/android/accounts/AccountManager.html) |
|||
|
|
|
Sure you might want to start with this:
https://developers.google.com/accounts/docs/OpenID Come back when you get stuck! |
|||
|
|
|
You can't exactly log in to an Android application using a Google account. You use a Google account to login to a website or webservice such as GMail, Calendar, etc., or a third party website if using OpenID. Since your app is not an website, this won't work. You can do either one of:
|
|||
|
|
