ShowGroupChatRoom
AndroidiOS
If you were looking for the method for use with Unity, see ShowGroupChatRoom for Unity SDK.
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
Parameter | Type | Description |
---|---|---|
req_info | FINTLGroupReqInfo | Guild information of the specified chatroom For more information, see INTLGroupReqInfo. |
Channel | FString | The 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);