예제 #1
0
        public void InitZoomLib(string appKey, string appSecret)
        {
            mobileRTC.Initialize(new MobileRTCSDKInitContext
            {
                EnableLog = true,
                Domain    = "zoom.us"
            });

            authService = mobileRTC.GetAuthService();
            if (authService != null)
            {
                authService.ClientKey    = appKey;
                authService.ClientSecret = appSecret;
                authService.SdkAuth();
            }
        }
예제 #2
0
        public void InitZoomLib(string appKey, string appSecret)
        {
            mobileRTC.Initialize(new MobileRTCSDKInitContext
            {
                EnableLog = true,
                Domain    = "zoom.us"
            });

            authService = mobileRTC.GetAuthService();
            if (authService != null)
            {
                authService.Delegate     = new MobileDelegate();
                authService.ClientKey    = appKey;
                authService.ClientSecret = appSecret;

                authService.SdkAuth();

                //Only if you are using screen sharing (Broadcast Upload Extension)

                //mobileRTC.SetAppGroupsName("group.com.syndew.zoomdemo");
            }
        }