Hi there,
I have upgraded to version v5.4.54524.1229 of the C# wrapper. I am unable to join or start a meeting.
The callbacks show the that the meeting has ended:
The meeting is in fact still running.
The SDK auth was a success and the login as a normal user was also a success.
Previous versions of the C# wrapper work correctly with the same SDK, logging and meeting credentials.
The code is as follows:
ZOOM_SDK_DOTNET_WRAP.JoinParam param = new ZOOM_SDK_DOTNET_WRAP.JoinParam();
param.userType = SDKUserType.SDK_UT_NORMALUSER;
ZOOM_SDK_DOTNET_WRAP.JoinParam4NormalUser join_api_param = new ZOOM_SDK_DOTNET_WRAP.JoinParam4NormalUser();
join_api_param.meetingNumber = ulong.Parse(textBox_meetingnumber_api.Text.Replace("-", "").Replace(" ", ""));
join_api_param.psw = textBox_Password.Text;
join_api_param.userName = this.userName;
param.normaluserJoin = join_api_param;
ZOOM_SDK_DOTNET_WRAP.SDKError err = CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().Join(param);
if (SDKError.SDKERR_SUCCESS == err)
{
feedback.Content = $"Joining Meeting {textBox_meetingnumber_api.Text}: {err}";
Hide();
}
else//error handle
{
feedback.Content = $"Failed to join meeting {textBox_meetingnumber_api.Text}: {err}";
Console.WriteLine(err);
}
Please let me know how I can resolve the issue.
Kind regards,
Roberto Bonini