ZoomSdk electron issue Participant ID is repeated in Zoom Default UI

Hi team,

as we are using user id which we get from this code

function meetinguserjoincb(useritem) {
  useritem.forEach(function (user, i){
    let userObj = zoomparticipantsctrl.GetUserInfoByUserID(user.userid);
    if (userObj.isMySelf == true) {
       console.log("my user id is", user.userid );
    }
  });
}

but the userid is not unique it gets reassigned when the member leaves and rejoins again. So can you tell the workaround regarding this, specifying any unique identifier within the participants who joined the meeting.

Electron sdk version - 5.7.1.644

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.