onDeviceProviderInfo

abstract fun onDeviceProviderInfo(result: ResultAPI, providerInfo: AuthV4.ProviderInfo?)

AuthV4 Provider 상태 조회 결과 통지
AuthV4 Provider status request result callback


korean

요청한 Provider 로 Login 이 되어있지 않으면 Login 까지 시도한다.
현재 playerId 와 connect 를 요청하지는 않는다.

result : SUCCESS 는 조회에 성공했다는 뜻이며 providerInfo 에 providerUserId 여부로 로그인된 유저를 판단해야 한다.
providerInfo : 실제 provider 에 로그인 되어있다면 providerUserId 가 존재한다. 그 외 providerType 만 존재.


english

If the requested provider is not logged in, it tries to login.
It does not request connect with the current playerId.

result : SUCCESS means that the query was successful and you can determine whether the requested user is a logged-in user or not by whether providerInfo has a providerUserId.
providerInfo : If you are logged in to the actual provider, there is a providerUserId. Otherwise, only providerType exists.