Meeting SDK - Change display name error SDKERR_WRONG_USEAGE

Description
Hi Zoom !
I’ve tried to change display name for both android and ios.

In ANDROID

if(meetingStatus == MeetingStatus.MEETING_STATUS_INMEETING) {
                    long myUserId = ZoomSDK.getInstance().getInMeetingService().getMyUserID();
                    MobileRTCSDKError result = ZoomSDK.getInstance().getInMeetingService().changeName("HELLO K.TEAM", myUserId);
                    System.out.println("RESULT change name =>>>>" + result);
                }

In IOS

if(state == MobileRTCMeetingState_InMeeting) {
        NSUInteger userId =  [[[MobileRTC sharedRTC] getMeetingService] myselfUserID];
        [[[MobileRTC sharedRTC] getMeetingService] changeName:self.displayName withUserID:userId];
    }

Which Mobile Meeting SDK version?
Android v5.9.3.4273
IOS v5.9.3.2512

Additional context
For our meeting, I also set display name in params but the display name show as webinar token registered.

Hi @bizupssc, thanks for using the dev forum.

Are you trying to change the name of a non-participant attendee in a webinar? If so, this is not supported. Only panelists are able to update their names in webinars.

Thanks!

1 Like

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