Start meeting from Android SDK when we have start_url

Description
Hi,
I have got the start_url and meeting_id. Teacher will going to start the meeting having start_url on android and student will connect through meeting_id. How will I achive this to start the meeting by start_url. I also tried seeing this example

Hi abhishekt,

Thanks for the post. If you have the start url, you will need to parse out the information(Such as meeting number, password, token, etc.) and pass them to interfaces as parameters.

Hope this helps. Thanks!

Hi @carson.zoom,
Can I know where to parse and send those nodes and to which method I have to pass.
Things which I’m having currently are ZAK , meeting_id , user_id. We use the same to start a web meeting on the browser as well. But somewhere i’m stuck with Android SDK.

If I get a small example from you that would be so great.

Thanks

Hi @carson.zoom,

Can I have an update on my latest question.

Thanks

Hi abhishekt,

Thanks for the reply and pardon the late response. If you have the ZAK, meeting_id, user_id, you could pass them into the StartMeetingParamsWithoutLogin object and use that to start/join a meeting. Here is the doc that describe this:https://marketplace.zoom.us/docs/sdk/native-sdks/android/mastering-zoom-sdk/start-join-meeting/api-user/start-meeting, and here is the implementation that you could try in our demo app:https://github.com/zoom/zoom-sdk-android/blob/master/mobilertc-android-studio/sample/src/main/java/us/zoom/sdksample/startjoinmeeting/apiuser/ApiUserStartMeetingHelper.java

Hope this helps. Thanks!

@carson.zoom This is going to work but can it be done without zoom_token ?

Hi abhishekt,

The zoom_token is required, if you only have ZAK, you could pass ZAK into zoom_token field.

Thanks!