Making ghost user

I have a some problems using chat service.
there are many ghost users in my chat service like this.

but i dont really know that why make why ghost users are created.
i only use startmessage API create group chat startmessage function like this

function startMessaging(txt) {
var users = ;
var roomTitle = document.getElementById(‘moim_name’).value || document.getElementById(‘challenge_name’).value ;
var userId = getCookie(‘userId’);
var params = new sb.GroupChannelParams();
var temp_arr = new Array();
temp_arr.push(userId);
params.isPublic = true;
params.isDistinct = false;
params.addUserIds(users);
params.isEphemeral = false;
params.operatorUserIds = temp_arr;
params.name =roomTitle;
params.channelUrl = txt;
sb.GroupChannel.createChannel(params, function (channel, error) {
if (error) {
return false;
}
});
};

plus, If someone wants to come into the chat room, they can’t come in without cookies to check and let them in.
But Ghost users are constantly being created. how can i solve this problem?

Hi @11110,

Can you DM me your APP ID and a couple of these users? I can take a look at our logs and see how they were created.

1 Like

i send DM for u :slight_smile:
plz check my DM