Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI CompanionThe Zoom Community has won the Best Customer Support Community award!
Celebrate with us2024-02-24 07:31 AM
MobileRTCSDKInitContext *context = [MobileRTCSDKInitContext new];
context.domain = @"zoom.us";
context.enableLog = YES;
BOOL sdkInitSucss = [[MobileRTC sharedRTC] initialize:context];
if (sdkInitSuc) {
MobileRTCAuthService *authService = [[MobileRTC sharedRTC] getAuthService];
if (authService) {
authService.delegate = self;
authService.jwtToken =@"JWT_TOKEN";
[authService sdkAuth];
}
Once the MobileRTCSDKInitContext is initialized successfully, subsequent attempts to reinitialize the SDK fail. This means that the SDK can only be initialized once per session. If the app is terminated and relaunched, the SDK initialization will succeed again.