How to append meeting password in StartMeetingParamsWithoutLogin in android

Description

How to append meeting password in StartMeetingParamsWithoutLogin

In my android application currently am using the following code to login to the meeting.
How do I add my meeting password along with the meeting id?

StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin();
params.userId = USER_ID;
params.zoomAccessToken = ZOOM_ACCESS_TOKEN;
params.meetingNo = meetingID;
params.displayName = “My Display Name”

Which version?
v5.2.42037.1112

Hi @vignesh, thanks for the post.

If you are starting a meeting as an API user, you have already authenticated through the REST API when retrieving your ZAK token. For this reason, you are not required to include the password, since you are already authorized to start the meeting on behalf of the host’s account.

If you are required to provide a password (e.g. you are a participant joining someone else’s meeting), you would need to use an instance of JoinMeetingParams and the joinMeetingWithParams method.

Thanks!

Hello @jon.zoom,
Solution is working like a charm. Thanks a lot.

Hi @vignesh, glad to hear everything is working!

Please don’t hesitate to reach out for anything else you need help with while using our SDK. :slightly_smiling_face:

Thanks!