1.0 KiB
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
- meeting-sdk/react-native for wrapper APIs and platform setup
- zoom-oauth for backend token handling (SDK JWT and ZAK)
Typical Flow
- Backend issues SDK JWT for mobile client.
- App initializes SDK with
initSDK. - App joins by
joinMeeting(attendee) or starts bystartMeeting(host + ZAK). - App handles meeting lifecycle and calls
cleanupduring teardown.