My application is built with Kotlin and does not use WebView. When I use ANDROID_CLIENT_ID, I get the error "[28444] Developer console is not set up correctly." However, WEB_CLIENT_ID is working, and I don’t know the exact reason. My goal is to obtain an ID token from Google Sign-In using ANDROID_CLIENT_ID. I also want to understand the difference between ANDROID_CLIENT_ID and WEB_CLIENT_ID in Google Sign-In.
val googleSignInOption =
GetGoogleIdOption.Builder()
.setServerClientId(androidClientId)
.setNonce(nonce)
.setAutoSelectEnabled(true)
.build()
val request = GetCredentialRequest.Builder().addCredentialOption(googleSignInOption).build()
val response: GetCredentialResponse = credentialManager.getCredential(context, request)
val credential = response.credential
if (credential.type == GoogleIdTokenCredential.TYPE_GOOGLE_ID_TOKEN_CREDENTIAL) {
val googleCredential = GoogleIdTokenCredential.createFrom(credential.data)
val idToken = googleCredential.idToken
Logger.d("Google ID Token: $idToken")
onSuccess(idToken)
}