Skip to main content

Launch Guild Page (ShowGroupChatRoom)

AndroidiOS
If you are using Unreal Engine, please refer to Unreal Engine SDK's ShowGroupChatRoom.

Launch Guild Page.

Function Definition

public static void ShowGroupChatRoom(INTLGroupReqInfo info, string channel = "");

Parameter Instructions

ParametersTypeExplanation
infoINTLGroupReqInfoGuild Application Information.
For more information, please refer to INTLGroupReqInfo.
ChannelStringOpen 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);