Class: Reporter

Reporter()

In video conferencing, we provide a lot of basic and advanced features for the conference service, these features depend on the participant's hardware condition, system condition and browser condition. Therefore, Reporter provides detection services for when these features are supported on the target device to provide a better experience. At the same time, the diagnosis of the basic information of the device can also help us better solve the user's problem more quickly.

Constructor

new Reporter()

Since:
  • 1.0.0
Author:
  • clever.su@zoom.us
Example
import { Reporter } from "@zoom/probesdk";
const reporter = new Reporter();
reporter.reportFeatures().then((features) => {
 console.log(JSON.stringify(features));
});