Zoom Meetings
cancel
Showing results for 
Search instead for 
Did you mean: 

What are Zoom Meetings?

Zoom Meetings are a simplified video conferencing solution for an optimized virtual meeting experience. Explore the Zoom Community's Recent Activity below to join the Meetings conversation and connect with other members. If you're still looking for support, browse our Zoom Meetings support articles or start a new discussion below!

Recent Activity

Host when connection failes

Hello everyone,In my last lecture, when the students were in the breakout rooms, my internet connection failed. When I logged in again, the host went to a student and I was alone in the main room, no longer able to manage or see the breakout rooms. I... Show more

Hello everyone,

In my last lecture, when the students were in the breakout rooms, my internet connection failed. When I logged in again, the host went to a student and I was alone in the main room, no longer able to manage or see the breakout rooms. I had to write an email to the attendee list and ask the host to close the breakout rooms and appoint me as co-host. Very uncomfortable.
What can I do in these cases? There is no way to get the host back.


Show less

reply-icon Latest Reply - 

Report to show all hosted meetings

Hi - I need to generate a report of all the meetings hosted by our users, excluding the ones they've joined as a guest. Ideally over the past X weeks or months. Is this possible?

 

reply-icon Latest Reply - 

Resolved! Zoom meeting ios SDK is not working while bridging from react native

In obj C, I have added a UIViewcontroller from which zoom sdk will be intiated in viewDidLoad method as below,// ZoomViewController.m@implementation ZoomViewController- (void)viewDidLoad { [super viewDidLoad]; [self setupSDK:@"MY_APP_JWT_TOKEN"];}- (... Show more

In obj C, I have added a UIViewcontroller from which zoom sdk will be intiated in viewDidLoad method as below,

// ZoomViewController.m

@implementation ZoomViewController
- (void)viewDidLoad {
  [super viewDidLoad];
  [self setupSDK:@"MY_APP_JWT_TOKEN"];
}
- (void)setupSDK:(NSString *)jwtToken {
  MobileRTCSDKInitContext *context = [[MobileRTCSDKInitContext alloc] init];
  context.domain = @"zoom.us";
  context.enableLog = YES;
  BOOL sdkInitSuc = [[MobileRTC sharedRTC] initialize:context];
  if (sdkInitSuc) {
    MobileRTCAuthService *authService = [[MobileRTC sharedRTC] getAuthService];
    if (authService) {
      authService.delegate = self;
      authService.jwtToken = jwtToken;
      [authService sdkAuth];
    }
  }
}


- (void)onMeetingStateChange:(MobileRTCMeetingState)state {
  NSLog(@"Meeting state: %ld", (long)state);
}

- (void)onMeetingReady:(MobileRTCMeetingState)state {
  NSLog(@"Meeting ready: %ld", (long)state);
}


-(void)startzoommeeting {
  MobileRTCMeetingService *meetingService = [[MobileRTC sharedRTC] getMeetingService];
  if (meetingService) {
    meetingService.delegate = self;
    [meetingService customizeMeetingTitle:@"Sample meeting title"];
    MobileRTCMeetingStartParam4WithoutLoginUser *user = [[MobileRTCMeetingStartParam4WithoutLoginUser alloc] init];
    user.userType = MobileRTCUserType_APIUser;
    user.meetingNumber = kMeetingNumber;
    user.userName = KuserName;
    user.isAppShare = NO;
    user.zak = @"MY_APP_JWT_TOKEN";
    [meetingService startMeetingWithStartParam: user];
  };
}
#pragma mark - MobileRTCAuthDelegate
- (void)onMobileRTCAuthReturn:(MobileRTCAuthError)returnValue {
    switch (returnValue) {
        case MobileRTCAuthError_Success:

[self startzoommeeting]; //  After the SDK initiation success 
            break;
      case MobileRTCAuthError_Unknown:
            NSLog(@"Client JWT Token authentication is invalid.");
            break;
        default:
            NSLog(@"SDK Authorization failed with MobileRTCAuthError: %u", returnValue);
    }
}

 

 

// ZoomViewController.h

#import <UIKit/UIKit.h>
#import <MobileRTC/MobileRTC.h>
#import <MobileCoreServices/MobileCoreServices.h>

@interface ViewController : UIViewController <MobileRTCMeetingServiceDelegate, MobileRTCAuthDelegate>
@end

 

// ZoomViewControllerBridge.m -- bridge_file


RCT_EXPORT_METHOD(presentZoomView) {
  dispatch_async(dispatch_get_main_queue(), ^{
    UIWindow *window = [[[UIApplication sharedApplication] windows] firstObject];
          if (window) {
            UIViewController *rootViewController = window.rootViewController;
            if ([rootViewController isKindOfClass:[UINavigationController class]]) {
                UINavigationController *navController = (UINavigationController *)rootViewController;
                ZoomViewController *zoomVC = [[ZoomViewController alloc] init];
                [navController pushViewController:zoomVC animated:YES];
          }
     });
}

 

In React Native , I'm calling the native code through bridge as below

 

import { NativeModules } from 'react-native';
const { ZoomViewControllerBridge } = NativeModules;
ZoomViewControllerBridge.presentZoomView();
 
The Zoom SDK initialization was successful, and the following line of code (meetingService startMeetingWithStartParam: user) was executed; however, nothing happens after that. When I try the same flow in native code, the delegate method (onMeetingStateChange) is called, but it's not getting called through the bridge.

 

What am I missing?


Show less

reply-icon Latest Reply - 

Configuring meeting pop up messages

I'm interested in personalizing the in-meeting announcements or notifications in Zoom. Specifically, I'd like to know if there's a way to customize the content of the pop-up messages that participants receive during a meeting. Has anyone successfully... Show more

I'm interested in personalizing the in-meeting announcements or notifications in Zoom. Specifically, I'd like to know if there's a way to customize the content of the pop-up messages that participants receive during a meeting. Has anyone successfully done this, and if so, could you please share the steps or options available for customization?

 

Example: When an employee enables meeting summary, would we be able to edit/add to the message that currently pops up or add an additional pop up message completely customized to our standards?


Show less

reply-icon Latest Reply - 

Seeing my viewers while presenting a powerpoint and them seeing me

Hi all, I am setting up a values based coaching tool for children and young people, and the training I am giving for this means I need to see my viewers and for them to see me while I present my powerpoint slides. Is there a way of doing this? I wond... Show more

Hi all, 

I am setting up a values based coaching tool for children and young people, and the training I am giving for this means I need to see my viewers and for them to see me while I present my powerpoint slides. 

Is there a way of doing this? 

I wonder if it is because I am currently using a school laptop until I do this full time, and the permissions may not grant me the full range of potential zoom video presentation options.

If so, do I need to get my own lap top and start afresh?

Thanks, 

Heather


Show less

Clip Saved in my compuetr but I cannot see it

Hi, Hope this email finds you doing well. I´m reaching out to you because I recorded a zoom meeting, then I downloaded and not it appears that is not letting me see it, and it is a very important recording and I need it. Do you know how can I do in o... Show more

Hi, 

Hope this email finds you doing well. I´m reaching out to you because I recorded a zoom meeting, then I downloaded and not it appears that is not letting me see it, and it is a very important recording and I need it. Do you know how can I do in order to download and see it?

 

It would help me a lot. I tried enter to another computer, and try to download it again but I couldn´t.

 

 


Show less

Annotation smearing

Hi there,

 

Each time I write with the annotation, it appeared to smear. This has been happening for a long time and I've update the latest update. Please let me know how it can be fixed

 

Thanks

Winnie

Annotation smearing

Each time I use the annotation to write, it appeared as smeared on my screen. I have already installed the latest update. Please help. Thanks

Пропадает звук через 10-15 секунд

Добрый день. Прошу помощи, может кто сталкивался.При подключении к конференции звук есть, все хорошо, но спустя 10 - 15 секунд он пропадает и пишет, что доступа к микрофону нет, разрешения все проставлены, windows 10, проблема была как на хроме так и... Show more

Добрый день. Прошу помощи, может кто сталкивался.

При подключении к конференции звук есть, все хорошо, но спустя 10 - 15 секунд он пропадает и пишет, что доступа к микрофону нет, разрешения все проставлены, windows 10, проблема была как на хроме так и на ФФ, все обновлено. Может это связано с тем, что на устройстве нет микрофона самого по себе?

Заранее спасибо!


Show less

reply-icon Latest Reply - 

Viewing participants from previous Zoom Meetings

I'm an admin of a Zoom account. The owner of the Zoom account wants me to view participants from previous meetings (meetings from 2023). I went to the roles tab, clicked on the owner's account, and clicked on previous meetings. When I search for meet... Show more

I'm an admin of a Zoom account. The owner of the Zoom account wants me to view participants from previous meetings (meetings from 2023). I went to the roles tab, clicked on the owner's account, and clicked on previous meetings. When I search for meetings from 2023, it only shows the meetings that I attended. Is it possible to view previous meetings that long ago that I did not attend?  


Show less