Hi Bhavesh,
Greetings!!!
You can use getLiveRoomInfo("rooomId") API to get online users of specific room. You will get the callback in onGetLiveRoomInfoDone(LiveRoomInfoEvent event) of RoomRequestListener.
@Override
public void onGetLiveRoomInfoDone(LiveRoomInfoEvent event) {
if(event.getResult() == WarpResponseResultCode.SUCCESS){
String[] users = event.getJoinedUsers();
}
}
Let me know if anu more queries are concern.
Thanks
Vishnu Garg