Changelog: Meeting SDK - Linux - 6.7.5

Released: 2026-02-16 Updated: 2026-02-19

Visit Changelog

Summary: Added support to restrict cross-account anonymous joining from the Meeting SDK; add support for handling invalid or incorrect OBF tokens.

Added

  • Added publicAppKey parameter in AuthContext struct to support public app type authentication.

    ```
    typedef struct tagAuthContext
    {
        ...
    	const zchar_t* publicAppKey;
        ...
    };
    ```
    
  • Added MEETING_FAIL_USER_LEVEL_TOKEN_NOT_HAVE_HOST_ZAK_OBF and ZoomSDKMeetingError_AppCanNotAnonymousJoinMeeting values to the MeetingFailCode enum to support restricting cross-account anonymous joining from the Meeting SDK.

    enum MeetingFailCode
    {
        ...
        /** 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,
    }
    
  • Added MEETING_FAIL_ON_BEHALF_TOKEN_INVALID and MEETING_FAIL_ON_BEHALF_TOKEN_NOT_MATCH_MEETING values to the MeetingFailCode enum to support handling invalid or incorrect on-behalf (OBF) tokens.

    enum MeetingFailCode
    {
        ...
        /** 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,
    }