Can I join a meeting (using meeting id) without authenticating through "MobileRTCAuthService"

,

I have a doubt. Can I join a meeting just by using “meeting id” without authenticating by using the below code,

 

MobileRTCAuthService *authService = [[MobileRTC sharedRTC] getAuthService];

    if (authService)

    {

        authService.delegate = self;

        authService.clientKey = @"<key>";

        authService.clientSecret = @"<secret>";

        [authService sdkAuth];

}

The reason why I am asking this is because, the Zoom app in iOS App Store (https://itunes.apple.com/app/zoom-cloud-meetings/id546505307?mt=8) is allowing anyone to join any meeting by just specifying the “meeting id”.

Hi Madhan,

If you are using Zoom iOS SDK, you have to follow the procedure to pass authentication then join meeting. This is by design.

Best

Wei