Released: 2026-02-16 Updated: 2026-02-19
Summary: Added support to restrict cross-account anonymous joining from the Meeting SDK; add support for handling invalid or incorrect OBF tokens.
Added
-
Added
publicAppKeyparameter inAuthContextstruct to support public app type authentication.``` typedef struct tagAuthContext { ... const zchar_t* publicAppKey; ... }; ``` -
Added
MEETING_FAIL_USER_LEVEL_TOKEN_NOT_HAVE_HOST_ZAK_OBFandZoomSDKMeetingError_AppCanNotAnonymousJoinMeetingvalues to theMeetingFailCodeenum 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_INVALIDandMEETING_FAIL_ON_BEHALF_TOKEN_NOT_MATCH_MEETINGvalues to theMeetingFailCodeenum 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, }