탈퇴 계정 복구
탈퇴 요청으로 삭제 대기 중인 계정을 복구 합니다.
탈퇴 유예 기간이 초과 된 계정은 복구 할 수 없습니다.
호출 정보
AccountManager.WithDrawalRestore(string withdrawalKey, PlayNANOODelegate callback) {}
호출 상세 정보
파라미터 | 설명 | 타입 |
---|---|---|
withdrawalKey | 인증 서비스에서 전달받은 계정 탈퇴 조회 키 | string |
callback | 통신 결과 | PlayNANOODelegate |
소스 코드
using PlayNANOO;
public class PlayNANOOExample : MonoBehaviour
{
Plugin plugin;
void Start()
{
plugin = Plugin.GetInstance();
string withdrawalKey = "string";
plugin.AccountManagerV20240401.WithDrawalRestore(withdrawalKey, (status, errorCode, jsonString, values) => {
if (status.Equals(Configure.PN_API_STATE_SUCCESS))
{
Debug.Log(values["Status"].ToString());
}
else
{
Debug.Log("Fail");
}
});
}
}
통신 결과
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Status" : "String"
}
통신 결과 상세 정보
데이터키 | 설명 | 타입 |
---|---|---|
Status | 처리 결과 | string |