Zoom Meeting SDK : How to disable invite link

Hi,
I like to disable the invite link highlighted in the below image

I have already tried this code snippet but it doesn’t work.

 MeetingService meetingService = mZoomSDK.getMeetingService();
        JoinMeetingOptions options = new JoinMeetingOptions();
        options.no_driving_mode = true;
        options.no_invite = true;


        options.meeting_views_options = MeetingViewsOptions.NO_TEXT_PASSWORD
                + MeetingViewsOptions.NO_TEXT_MEETING_ID
                + MeetingViewsOptions.NO_BUTTON_SHARE
                + MeetingViewsOptions.NO_BUTTON_MORE;
1 Like

Please let me know whether this is bug or not!

Hi, I also need to remove this. In previous versions of the SDK this did not appear by setting meeting_views_options.

Hi @fernando.moobi @geet , please use the showInviteFunction to disable invite link for web: SDK Reference - Web - Client View

For Android, reference the iMeetingInviteAction: SDK Reference - Android

Thank you

Hi,
Thank you for the quick response.
Can you please elaborate a little bit about the Android SDK if so that will be much helpful.

The thread has solution refer How to disable invite link

1 Like

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