How to generate and start meeting in android sdk

Hi Zoom team,

I am using Android Meeting SDK using SDK_KEY and SDK_SECRET in android studio, when I update SDK app I found that I am not able to schedule meeting using meeting scheduleMeeting method which I were using previously.

After research I am able to create meeting using API https://zoom.us/v2/users/me/meetings after completing the auth flow in the same way our web is doing. I redirect user to https://zoom.us/oauth/authorize?response_type=code&client_id=CLIENT_ID&redirect_uri=redirect_url, login on page and then authorize my company’s auth app and complete the flow after sending access_token which I got in response after authorize to backend server and get Zoom Access Token in response success.

I created the meeting using that Zoom Access Token but Now I am trying to start meeting using the Zoom Access token after parsing from start_url which I get in response of create meeting but it is asking me to enter passcode. Following is the code I am using to start meeting:

StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin(); params.meetingNo = meetingNo;
params.userId = userId;
params.zoomAccessToken = zak;
params.userType = 0;
params.displayName = name
ret = meetingService.startMeetingWithParams(context, params, opts);

Please help me out to know how can I start meeting in android sdk.

Version: v5.10.6.6361

Thank you

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