Join meeting error

Hi, @carson.zoom
I using zoom sdk custom UI, when join meeting found some issuses.When I join meeting input error password, but I don’t get password_error.However I get onMeetingState is MobileRTCMeetingState_Connecting, so I don’t prompted user password error.
Can zoom sdk check whether this meeting needs a password according to the meeting number? because meeting can setup no password!

Hi @ios_feifei,

When the password is incorrect, the delegate callback onJoinMeetingInfo(https://zoom.github.io/zoom-sdk-ios/protocol_mobile_r_t_c_meeting_service_delegate_01-p.html#ae8908d5bd2047a843ba63f6c7c4330ce) will be triggered. So you may prompt a dialog and ask for the password. You may refer to the implementation here: https://github.com/zoom/zoom-sdk-ios/blob/f5ddf0da3af85efe3ec1abe04460b6cc82c3f13a/MobileRTCSample/MobileRTCSample/MainViewController%2BMeetingDelegate.m#L13

Thanks!

Thanks @carson.zoom,
It’s useful to me!