Skip to main content

ShowGroupChatRoom

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

Open the guild chatroom page.

Function definition

UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
static void ShowGroupChatRoom(FINTLGroupReqInfo req_info,const FString channel);

Input parameters

ParameterTypeDescription
req_infoFINTLGroupReqInfoGuild information of the specified chatroom
For more information, see INTLGroupReqInfo.
ChannelFStringThe specified channel to open the chatroom

Observers

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

The callback methodID is kMethodIDShowGroupRoom.

Code sample

FINTLGroupReqInfo reqInfo;
reqInfo.worldID = "1";
reqInfo.guildID = "1";
UINTLSDKAPI::ShowGroupChatRoom(reqInfo, UINTLLoginChannel::kChannelKakao);