본문으로 건너뛰기

가입 신청 조회

길드 가입 신청 정보를 조회합니다.

호출 정보

public void PersonalSearch (string tableCode, PlayNANOODelegate callback) {}

호출 상세 정보

파라미터설명타입
tableCode테이블 코드string
callback통신 결과PlayNANOODelegate

소스 코드

using PlayNANOO;

public class PlayNANOOExample : MonoBehaviour
{
Plugin plugin;

void Awake()
{
plugin = Plugin.GetInstance();

plugin.Guild.PersonalSearch("tableCode", (status, error, jsonString, values) =>
{
if (status.Equals(Configure.PN_API_STATE_SUCCESS))
{
foreach (Dictionary<string, object> value in (ArrayList)values["Items"])
{
Debug.Log(value["TableCode"]);
Debug.Log(value["Uid"]);
Debug.Log(value["Name"]);
Debug.Log(value["Country"]);
Debug.Log(value["Point"]);
Debug.Log(value["MemberCount"]);
Debug.Log(value["MemberLimit"]);
Debug.Log(value["AutoJoin"]);
Debug.Log(value["ExtraData"]);
Debug.Log(value["InDate"]);
Debug.Log(value["RequestInDate"]);
}
}
else
{
Debug.Log("Fail");
}
});
}
}

통신 결과

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"Items" : [
{
"TableCode" : "string",
"Uid" : "string",
"Name" : "string",
"Country" : "string",
"Point" : "integer",
"MemberCount" : "integer",
"MemberLimit" : "integer",
"AutoAuth" : "string",
"InDate" : "string",
"RequestInDate" : "string"
}
]
}

통신 결과 상세 정보

데이터키설명타입
TableCode테이블 코드string
Uid길드 식별 고유 코드string
Name길드 이름string
Country길드 국가 코드string
Point길드 포인트integer
MemberCount회원 수integer
MemberLimit최대 가입 가능 회원 수integer
AutoJoin자동 회원 가입 가능 여부string
ExtraData추가 데이터string
InDate길드 생성일자string
RequestInDate길드 가입 신청 일자string