Skip to main content

ShowGroupChatRoom

AndroidiOS
If you were looking for the method for use with Unreal Engine, see ShowGroupChatRoom for Unreal Engine SDK.

Open the guild chatroom page.

Function definition

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

Input parameters

ParameterTypeDescription
infoINTLGroupReqInfoGuild information of the specified chatroom
For more information, see INTLGroupReqInfo.
channelstringThe specified channel to open the chatroom

Observers

The callback processing interface is GroupBaseResultObserver. The callback data structure is BaseResult.

The callback methodID is INTL_GROUP_SHOW_ROOM.

Code sample

INTLGroupReqInfo reqInfo = new INTLGroupReqInfo();
reqInfo.worldID = "1";
reqInfo.guildID = "1";
INTLAPI.ShowGroupChatRoom(reqInfo, INTLChannel.Kakao);