Windows SDK Updates - 01/24/21
1611567600001
Developers!
We are happy to announce that our Windows SDK has been updated to v5.4.54802.0124, and it is available in Zoom App Marketplace.
In this version, we have included the following changes:
Added:
Added a new interface to send chat messages to different types of users(including the users in the waiting room).
The interface in
IMeetingVideoController
:virtual SDKError SendChatMsgTo(wchar_t* content, unsigned int receiver, SDKChatMessageType type) = 0;
Added a new callback to show the login failed reasons.
The callback in
IAuthServiceEvent
:virtual void onLoginReturnWithReason(LOGINSTATUS ret, IAccountInfo* pAccountInfo, LoginFailReason reason) = 0;
The enum
LoginFailReason
:
enum LoginFailReason
{
LoginFail_None = 0,
LoginFail_EmailLoginDisable,
LoginFail_UserNotExist,
LoginFail_WrongPassword,
LoginFail_AccountLocked,
LoginFail_SDKNeedUpdate,
LoginFail_TooManyFailedAttempts,
LoginFail_SMSCodeError,
LoginFail_SMSCodeExpired,
LoginFail_PhoneNumberFormatInValid,
LoginFail_OtherIssue = 100,
};
Changed & Fixed:
Following the change of the Zoom Client to block the unencrypted traffic.
Fixed an issue that the meeting info is accessible through the sharing toolbar after disabling the meeting info window.
Fixed an issue that setting to hide the audio/video elements in Zoom UI is not being respected.
Deprecated:
SendChatTo(unsigned int receiver, wchar_t* content)
You may find the latest version of Windows SDK on the download page on App Marketplace (The same location as your SDK key & secret).
Should you have any questions while upgrading our SDK, please visit our Developer Forum and our SDK experts will be more than happy to assist you over there.
Happy Zooming!!