setCallbacks
fun setCallbacks(onAuth: (oAuth: OAuth, accessToken: AccessToken) -> Unit, onAuthCode: (data: AuthCodeData, isCompletion: Boolean) -> Unit = { _, _ -> }, onFail: (oAuth: OAuth, fail: VKIDAuthFail) -> Unit = { _, _ -> })
Sets callbacks for the authorization
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. 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.