Launch Guild Page (ShowGroupChatRoom)
Launch Guild Page.
Function Definition
public static void ShowGroupChatRoom(INTLGroupReqInfo info, string channel = "");
Parameter Instructions
| Parameters | Type | Explanation |
|---|---|---|
| info | INTLGroupReqInfo | Guild Application Information. For more information, please refer to INTLGroupReqInfo. |
| Channel | String | Open Chat Room for Specific Channel |
Observers
The callback handling interface is GroupBaseResultObserver.The callback data structure is BaseResult.
The callback ID is INTL_GROUP_SHOW_ROOM.
Code example
INTLGroupReqInfo reqInfo = new INTLGroupReqInfo();
reqInfo.worldID = "1";
reqInfo.guildID = "1";
INTLAPI.ShowGroupChatRoom(reqInfo, INTLChannel.Kakao);