Files
2026-07-13 12:20:06 +08:00

1.0 KiB

React Native Meeting Embed

Use this flow when you need Zoom meetings inside a mobile app built with React Native.

When to Use

  • iOS/Android app already uses React Native
  • You need Zoom meeting join/start inside app navigation
  • You want Zoom Meeting SDK UI from React Native wrapper, not a custom video stack

Skill Chain

  1. meeting-sdk/react-native for wrapper APIs and platform setup
  2. zoom-oauth for backend token handling (SDK JWT and ZAK)

Typical Flow

  1. Backend issues SDK JWT for mobile client.
  2. App initializes SDK with initSDK.
  3. App joins by joinMeeting (attendee) or starts by startMeeting (host + ZAK).
  4. App handles meeting lifecycle and calls cleanup during teardown.

References