LaunchAppInMeeting not working as expected

Errors with launchAppInMeeting

The joinUrl seems to be ignored and it’s always creating a new meeting.

How exactly is this method working?

Also, are there other alternative ways to launch a meeting? It would be nice to just pass the id and the passcode instead of passing a joinURL

A payload would also be nice with this method. So that we can pass a custom message to the instance of the app in the meeting that will start.

In my testing the meeting provided in the joinURL is what was opened by that function.

What version of the Zoom Client and Zoom Apps JS SDK are you using?

Thanks,
Max

Hey,

Turns out that I had joinUrl instead of joinURL.

it’s working now, but I wish that there was some message returned saying invalid / missing options were passed in. Would have saved me a bunch of time.

Any plans to implement a payload, similar to the action payload in the deeplink method?

I’m not aware of plans to add a payload to this API just yet. You should be able to use the onConnect or OnMeeting event to run code when the in-meeting instance is started.

Would that work for your use case?

Interesting. The documentation for those methods is pretty confusing and the linked guide leads to a 404 url.

Where can i see an example of how those methods work from both sides? And the differences between them?

There seem to be 3 methods - onConnect, onMessage, and onMeeting.

When and how do we use them?

I would love to see a complete working example for clarity. Glancing over the docs, I’m struggling to see how this works because the connect methods say they can only be called from the meeting instance, not the panel instance. But the payload I need to pass is in the panel instance. Can you tell me what the setup and flow should look like for this to work?

  1. from panel - zoomSdk.launchappinmeeting({joinURL})
  2. from panel - send json data to meeting instance.
  3. In meeting - receive data and update ui.

Does postMessage only work after connect?
Do both panel and meeting have access to postMessage?

Is the flow something like this?

  1. meeting - zoomSdk.connect()
  2. meeting - zoomSdk.onConnect(... zoomSdk.postMessage("send me data"))
  3. panel - zoomSdk.onMessage(... zoomSdk.postMessage({JSON DATA}))
  4. meeting - zoomSdk.onMessage(... render ui with data )

This is the guide that is linked to in the docs but it’s a 404

https://marketplace.zoom.us/docs/beta-docs/zoom-apps/guides/maintaining-state/

@RostislavR
Strange that the above link was broken, you can find it in our SDK Reference if you haven’t seen it already.

In the customlayout example, we have examples of using connect and onConnect, and onMeeting:

Here is an example of how you can call the connect function from within the meeting instance to connect to the client instance

Let me know if that helps. If not, let me know what would be helpful.