Changelog: Meeting SDK - Electron - 6.7.5

Released: 2026-02-16 Updated: 2026-02-17

Visit Changelog

Summary: Added AuthWithJwtToken interface for authenticating the SDK; added support for restricting cross-account anonymous joins from the Meeting SDK.

Breaking changes

  • Added AuthWithJwtToken interface to SDKAuth in zoom_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_UserLevelTokenNotHaveHostZakObf and ZoomSDKMeetingError_AppCanNotAnonymousJoinMeeting values to ZoomSDKMeetingError enum to support restricting cross-account anonymous joins from the Meeting SDK. Also added MEETING_FAIL_USER_LEVEL_TOKEN_NOT_HAVE_HOST_ZAK_OBF and MEETING_FAIL_APP_CAN_NOT_ANONYMOUS_JOIN_MEETING values 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,
        ...
    }
    ```