API Google Plus устарел.Как я могу получить пол и дату рождения из запроса Объем.Ниже приведен мой код:
val gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken("xxxxxxxxx.apps.googleusercontent.com")
.requestEmail()
.requestProfile()
.requestScopes(Scope(Scopes.PROFILE))
.build()
val mGoogleSignInClient = GoogleSignIn.getClient(this, gso)
С этого параметра входа я хочу указать пол и дату рождения пользователя Google.
public override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent) {
super.onActivityResult(requestCode, resultCode, data)
callbackManager.onActivityResult(requestCode, resultCode, data)
if (requestCode == RC_SIGN_IN) {
val result = GoogleSignIn.getSignedInAccountFromIntent(data)
try {
val account = result.getResult(ApiException::class.java)
//Here I want gender and date of birth from google sign in option
} catch (e: ApiException) {
e.printStackTrace()
}
}
}