Android Google Sign In: check if User is signed in

2020-05-31 09:10发布

I am looking for a way to check if my user already signed in with Google Sign In.

I support several logging APIs (Facebook, Google, custom), so I would like to build a static helper method like: User.isUserLoggedIn()

With Facebook I use:

if AccessToken.getCurrentAccessToken() != null { 
   return true
} 

to check if the user is logged via Facebook.

On iOS I use the following to check if the user is logged via Google Sign In:

GIDSignIn.sharedInstance().hasAuthInKeychain()

My question: Is there an equivalent on Android to the iOS method :

GIDSignIn.sharedInstance().hasAuthInKeychain() ?

I am looking for a method that doesn’t involve a callback.

Thanks! Max

3条回答
家丑人穷心不美
2楼-- · 2020-05-31 09:30

Take a look at the Android sign-in documentation:

To check if the user is signed-in, call isConnected():

if (mGoogleApiClient != null && mGoogleApiClient.isConnected()) {
   // signed in. Show the "sign out" button and explanation.
   // ...
} else {
   // not signed in. Show the "sign in" button and explanation.
   // ...
}
查看更多
啃猪蹄的小仙女
3楼-- · 2020-05-31 09:31

Implemented in Kotlin, and using Anko:

    val googleSignInAccount = GoogleSignIn.getLastSignedInAccount(act)
    if (googleSignInAccount != null) {
        getGoogleSignInClient().signOut()
    }
查看更多
Root(大扎)
4楼-- · 2020-05-31 09:40

You can use this function

private boolean isSignedIn() {
  return GoogleSignIn.getLastSignedInAccount(context) != null;
}

https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignIn

public static GoogleSignInAccount getLastSignedInAccount (Context context)

Gets the last account that the user signed in with.

Returns: GoogleSignInAccount from last known successful sign-in. If user has never signed in before or has signed out / revoked access, null is returned.

查看更多
登录 后发表回答