Hi Support,
I’m facing issue while initiating a scheduled meeting as a host which I have created using meeting API to create a meeting. Now I want to start that meeting as a host but it is not treating me as a host and asking me for a passcode to enter.
Below is the Android Code i’m using to initiate a meeting. That zoomAccessToken which I am using is the zak I have parsed from start_url which I got after creating the meeting in response as a parameter and the userId I am getting from the API “https://api.zoom.us/v2/users/me”.
At the time of creating meeting I used “https://zoom.us/v2/users/me/meetings” API and for fetching Zoom Access Token I have used ClientId and clientSecret.
StartMeetingOptions opts =ZoomMeetingUISettingHelper.getStartMeetingOptions();
StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin();
UserZoomToken userZoomTokenDet = Nebr_SharedPreferences.getZoomToken(context, “zt”);
params.meetingNo = meetingNo;
params.userId = userZoomTokenDet.getUser_id();
params.zoomAccessToken = zak;
params.userType = 1;
params.displayName = userZoomTokenDet.getName();
ret = meetingService.startMeetingWithParams(context, params, opts);
Which Android Meeting SDK version?
v5.10.6.6361
Is it because of clientId and clientSecret, do I have to use sdkKey and sdkSecret to fetch ZAK ?
Please help me to start the meeting as the host.
Thanks
Megha