Help Center/ Meeting/ Client SDK Reference/ Web SDK/ APIs/ Basic Settings/ Checking the Operating Environment
Updated on 2025-04-18 GMT+08:00

Checking the Operating Environment

API Description

This API is used to check whether the SDK can run in the system. For details about the supported running environments, see Table 1.

Method Definition

1
checkSystemRequirements():Promise<Result>

Parameter Description

None

Return Values

For details about the result structure, see Table 1. For details about the result data, see the following table.

Table 1 Return value data

Type

Description

boolean

true: The system and browser support the SDK.

false: The system and browser do not support the SDK.

Sample Code

const result = HWMeeting.checkSystemRequirements().then((result) => {
      // API called.
      console.log(result);
    }).catch((e) => {
      // API calling failed.
      console.error(e);
})

The sample code in the typical scenario and API reference is pseudo code and cannot be directly used.