cancel
Showing results for 
Search instead for 
Did you mean: 

On April 16, between 2:25 P.M. ET and 4:12 P.M. ET, the domain zoom.us was not available due to a server block by GoDaddy Registry. This block was the result of a communication error between Zoom’s domain registrar, Markmonitor, and GoDaddy Registry, which resulted in GoDaddy Registry mistakenly shutting down zoom.us domain. Zoom, Markmonitor, and GoDaddy worked quickly to identify and remove the block, which restored service to the domain zoom.us. There was no product, security or network failure at Zoom during the outage. GoDaddy and Markmonitor are working together to prevent this from happening again.

Not able to mute/unmute zoom meeting in react-native-zoom-us

kashyapG
Newcomer
Newcomer

I am integrating zoom into react native application. Below are versions used
react native- 0.74.3, react-native-zoom-us- 9.0.0

Not able to mute and unmute audio when using custom component ZoomUsVideoVideo.
I am able to initilize the zoom SDK.
I am able to join meeting successfully.
But when I tried to mute and unmute audio, I get an error ie: "ERR [Error: Mute my audio error, status: SDKERR_SERVICE_FAILED]"

const initializeResult = await ZoomUs.initialize(
{ jwtToken: sdkJwtToken },
{
enableCustomizedMeetingUI,
disableShowVideoPreviewWhenJoinMeeting: true,
disableMinimizeMeeting: false,
disableClearWebKitCache: false
},
);

const joinMeetingResult = await ZoomUs.joinMeeting({
autoConnectAudio: true,
userName: Test,
meetingNumber: meetingNumber,
password: password,
noMeetingErrorMessage: true,
zoomAccessToken: zak,
noAudio: false,
noVideo: false,
}).then(() => {
Alert.alert("joined meeting........")
});

const muteUnmuteResult = await ZoomUs.muteMyAudio(true/false);

 

0 REPLIES 0