最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android - How to use ANDROID_CLIENT_ID instead of WEB_CLIENT_ID - Stack Overflow

programmeradmin1浏览0评论

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)
}
发布评论

评论列表(0)

  1. 暂无评论