onAuthV4Setup

abstract fun onAuthV4Setup(result: ResultAPI, isAutoSignIn: Boolean, did: String?, providerTypeList: ArrayList<AuthV4.ProviderType>?)

AuthV4 초기화 결과 통지
AuthV4 initialization result callback


korean

result : 최초 실행 시 DID 를 받아오지 못하거나, Provider List 를 받아오지 못하면 실패한다. 그 외 성공.
isAutoSignIn : 로컬에 이전 세션이 남아있는지 여부. true 일 경우 SignIn(ProviderType.AUTO) 을 호출 한다.
그 외의 경우 providerTypeList 중 하나로 SignIn 을 요청이 가능 하다.
providerTypeList : 현재 단말에서 사인-인 가능한 Provider List 이다.
단말의 현재 지역 (IP) 에 따라 다르게 보여질 수 있다.
GUEST 를 포함하고 있으며 일부 지역 혹은 환경에서는 GUEST 도 불가능 할 수 있다. (분산서버)


english

result : When initial initialize is executed, it fails if it does not receive DID or Provider List. Otherwise, it is a success.
isAutoSignIn : Whether there is an old session left on local storage. If true, call SignIn (ProviderType.AUTO).
Otherwise, you can request SignIn as one of providerTypeList.
providerTypeList : A provider list that can be signed in from the current device.
And may be different depending on the current area (IP) of the device.
GUEST is included, and in some areas or environments GUEST may not be possible.