Description
CZoomSDKeDotNetWrap.Instance.GetPreMeetingServiceWrap().CreateScheduleMeetingItem()
Always return null.
Which Client Windows SDK version?
C# Wrapper 5.4.54802.0124
To Reproduce(If applicable)
Steps to reproduce the behavior:
-
CZoomSDKeDotNetWrap.Instance.GetAuthServiceWrap().SDKAuth(authParam); Success
-
LoginParam loginParam = new LoginParam();
LoginParam4Email email = new LoginParam4Email();
email.userName = txtUsername.Text.Trim();
email.password = txtPassword.Password;
loginParam.emailLogin = email;
loginParam.loginType = LoginType.LoginType_Email;
SDKError err = CZoomSDKeDotNetWrap.Instance.GetAuthServiceWrap().Login(loginParam);
*** err = Success -
var MeetingItem =
CZoomSDKeDotNetWrap.Instance.GetPreMeetingServiceWrap().CreateScheduleMeetingItem()*** MeetingItem always null
I been try to search in Forum, but no topic solved my unknow error.