Released: 2026-02-16 Updated: 2026-02-17
Summary: Added AuthWithJwtToken interface for authenticating the SDK; added support for restricting cross-account anonymous joins from the Meeting SDK.
Breaking changes
-
Added
AuthWithJwtTokeninterface toSDKAuthinzoom_auth.js for authenticating the SDK.``` /** * Authenticates SDK. * @method SDKAuth * @param {String} JWT token. You may generate your JWT token using the online tool https://jwt.io/. * @param {String} Public app key used for SDK authentication (alternative to JWT token). * @return {Number} If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error. */ SDKAuth ```
Added
-
Added
ZoomSDKMeetingError_UserLevelTokenNotHaveHostZakObfandZoomSDKMeetingError_AppCanNotAnonymousJoinMeetingvalues toZoomSDKMeetingErrorenum to support restricting cross-account anonymous joins from the Meeting SDK. Also addedMEETING_FAIL_USER_LEVEL_TOKEN_NOT_HAVE_HOST_ZAK_OBFandMEETING_FAIL_APP_CAN_NOT_ANONYMOUS_JOIN_MEETINGvalues to help support restricting cross-account anonymous joins from the Meeting SDK.``` const ZoomMeetingFailCode = { ... /** User level privilege token not have host zak/obf. */ MEETING_FAIL_USER_LEVEL_TOKEN_NOT_HAVE_HOST_ZAK_OBF: 503, /** App can not anonymous join meeting. */ MEETING_FAIL_APP_CAN_NOT_ANONYMOUS_JOIN_MEETING: 504, /** On-behalf token invalid. */ MEETING_FAIL_ON_BEHALF_TOKEN_INVALID: 505, /** On-behalf token meeting number not match. */ MEETING_FAIL_ON_BEHALF_TOKEN_NOT_MATCH_MEETING: 506, ... } ```