setCallbacks
fun setCallbacks(onAuth: (oAuth: OneTapOAuth?, accessToken: AccessToken) -> Unit, onFail: (oAuth: OneTapOAuth?, fail: VKIDAuthFail) -> Unit = { _, _ -> }, onAuthCode: (data: AuthCodeData, isCompletion: Boolean) -> Unit = { _, _ -> })
Callbacks that provide auth result for version with multibranding.
Parameters
onAuth
A callback to be invoked upon a successful auth.
onAuthCode
A callback to be invoked upon successful first step of auth - receiving auth code which can later be exchanged to access token. isCompletion is true if onSuccess won't be called. This will happen if you passed auth parameters and implement their validation yourself. In that case we can't exchange auth code for access token and you should do this yourself.
onFail
A callback to be invoked upon an error during auth.