Closed abdymm closed 4 years ago
got error ERR_ZOOM_INITILAIZATION when initialize the zoom, do you have any idea?
when i try to ZoomBridge.initialize , i got this
ZoomBridge.initialize
but, when i trying to use ZoomBridge.joinMeeting i got this
ZoomBridge.joinMeeting
this is my full code
import React, {Component} from 'react'; import ZoomBridge from 'react-native-zoom-bridge'; import {Text, View, Button} from 'react-native'; export class App extends Component { async componentDidMount() { try { const initializeResult = await ZoomBridge.initialize( 'qvQXXr3Etwgsx4aFSfSlgGEDIf4BhjLDB8yz', 'tiSFxfRHISoKWX9u43Pgq0d7HYw63W3Jqr5O', 'zoom.us', ); console.warn({initializeResult}); } catch (e) { console.log(e); console.warn({e}); } } async join() { const displayName = 'ProSpark-Mobile'; try { const joinMeetingResult = await ZoomBridge.joinMeeting( displayName, '74072615405', ); console.warn({joinMeetingResult}); } catch (e) { console.warn({e}); } } render() { return ( <View> <Button title={'START MEETING'} onPress={() => { this.join(); }} /> </View> ); } } export default App;
ah no, i just try to react-native run-android again, and its works
Great to hear!
got error ERR_ZOOM_INITILAIZATION when initialize the zoom, do you have any idea?
when i try to
ZoomBridge.initialize
, i got thisbut, when i trying to use
ZoomBridge.joinMeeting
i got thisthis is my full code