onAuthV4Connect

abstract fun onAuthV4Connect(result: ResultAPI, conflictPlayer: AuthV4.PlayerInfo?)

AuthV4 Provider 연동 결과 통지
AuthV4 Provider connect result callback


korean

result : 지원하지 않는 ProviderType (INVALID_PARAM) 이거나
Sign 이 진행중일 경우 (IN_PROGRESS) 실패가 될 수 있다.
SignIn 이 되지 않은 상태에서는 INVALID_SESSION 에러가 된다.
이미 연결되어있는 Provider 의 경우 INVALID_PARAM 에러가 되며
해당 Provider 에 대해 disconnect 를 먼저 호출 후 다시 connect 해야 한다.
연결을 시도한 Provider 가 이미 다른 playerId 에 연결되어 있을 경우 CONFLICT_PLAYER 가 되며
conflictPlayer 객체에 해당 충돌 유저 정보가 포함되어있다.
conflictPlayer : result 가 CONFLICT_PLAYER 일 경우 충돌 유저에 대한 정보 이다.
playerId 와 충돌난 ProviderInfo 의 정보만 포함되어있다.
playerToken 은 비어 있음.


english

result :If ProviderType is not supported (INVALID_PARAM)
or if the Sign-in is in progress (IN_PROGRESS), it may fail.
If sign-in fails, an INVALID_SESSION error is returned.
An INVALID_PARAM error will occur if the provider is already connected.
In this case, you must first call disconnect for the provider and then connect again.
CONFLICT_PLAYER is returned if the provider attempting to connect is already connected to another playerId
and the conflictPlayer object returned contains the corresponding conflict user information.
conflictPlayer : If result is CONFLICT_PLAYER, it contains information about the conflicting user.
Only the information of the ProviderInfo that conflicted with playerId is included.
playerToken is empty.