@maktest wrote:
Hi,
We have used zoom SDK for ionic using below link. We are developed in ionic frame work version 5.4
Link is: https://ionicframework.com/docs/native/zoom
Issue:
When user click the join meeting button, I called the below code. but zoom video screen not comes and the zoom server throw “Please enter valid meeting number and display name” error message.
startMeeting(meeting_id,password)
{
let options = {
“no_driving_mode”:true,
“no_invite”:true,
“no_meeting_end_message”:false,
“no_titlebar”:false,
“no_bottom_toolbar”:false,
“no_dial_in_via_phone”:true,
“no_dial_out_to_phone”:true,
“no_disconnect_audio”:true,
“no_share”:false,
“no_audio”:false,
“no_video”:false,
“no_meeting_error_message”:true
};
this.zoomService.joinMeeting(meeting_id, password, localStorage.getItem(‘name’), options)
.then((success: any) => console.log(success))
.catch((error: any) => console.log(error));
}FYI:
The same code has working in android platform. Only issue occurred in IOS platform.
I need solution for IOS.
Thanks
Posts: 1
Participants: 1