Alert message when trying to join a meeting say invalid meeting ID

Integrating into a new app and using Swift getting Alert message when trying to join a meeting.

Alert message: “This meeting ID is not valid. Please check and try again.”

I have verified the meeting ID and it is for a valid meeting:

Here is the code used to call the meeting:

 if (service != nil)
        {
            service!.delegate = self;
            // initialize a parameter dictionary to store parameters.
            let paramDict = [
                kMeetingParam_Username: "someUser",
                kMeetingParam_MeetingNumber:"*******"]
            
            zoomSDK?.setMobileRTCRootController(self.navigationController)
            let response = service?.joinMeeting(with: paramDict as [AnyHashable:Any])

Testing on:
-Xcode 10

  • Device: iPhone7
  • OS: iOS
  • Version12.4

Hi unc93,

Thanks for the post. Normally the error “This meeting ID is not valid” appears when the meeting ID is not yet valid(For example, starting a meeting too soon or right after sending the schedule meeting request) or when the meeting ID is not able to parse. I am able to join a meeting with the similar parameters that you are having, here is the code snippet that I am using:

let meetingService = MobileRTC.shared().getMeetingService();
        
        if (meetingService != nil) {
            let paramDict: [String : Any] = [
                kMeetingParam_Username: "Zoom Swift Test",
                kMeetingParam_MeetingNumber: "Meeting Number here",
                kMeetingParam_MeetingPassword: "",
                kMeetingParam_NoAudio: false,
                kMeetingParam_NoVideo: false
            ];
            
            _ = meetingService?.joinMeeting(with: paramDict);

Please have a try and hope it helps. Thanks!