Getting response code 150

Hi operea,

Thank you very much for the code snippet. I tried exactly the same code you have and I am able to start a meeting with this. The following situation could cause the start meeting method returns 150:

  1. The param is invalid
  2. The web domain is not correctly set at initialization
  3. Since you are using the parameter object for logged in user, if the user is not logged in, then it will return 150. Please note that our login method is async, please wait for the login status to be success in the onMobileRTCLoginReturn callback before you perform the start meeting action
  4. Meeting number is invalid

You may refer to the implementation in our demo app for this:https://github.com/zoom/zoom-sdk-ios/blob/master/MobileRTCSample/MobileRTCSample/SDKPresenters/how_to_start_join_meeting/start_with_login_user/SDKStartJoinMeetingPresenter%2BLoginUser.m, or you may refer to our documentation for further details: https://marketplace.zoom.us/docs/sdk/native-sdks/iOS/mastering-zoom-sdk/start-join-meeting/email-login-user/authentication. Both demo and doc are written in objc, but the concept is the same with Swift.

Hope this helps. Thanks!