js-apis-device-manager.md 51.6 KB
Newer Older
1
# @ohos.distributedHardware.deviceManager (设备管理)
Z
zengyawen 已提交
2

3 4 5 6 7 8 9 10 11
本模块提供分布式设备管理能力。

系统应用可调用接口实现如下功能:

- 注册和解除注册设备上下线变化监听
- 发现周边不可信设备
- 认证和取消认证设备
- 查询可信设备列表
- 查询本地设备信息,包括设备名称,设备类型和设备标识
S
summer8999 已提交
12
- 发布设备发现
S
summer8999 已提交
13

14 15
> **说明:**
>
16 17
> - 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
> - 本模块接口为系统接口,三方应用不支持调用。
Z
zengyawen 已提交
18

Z
zengyawen 已提交
19 20

## 导入模块
Z
zengyawen 已提交
21

22
```js
Z
zengyawen 已提交
23 24 25 26
import deviceManager from '@ohos.distributedHardware.deviceManager';
```


Z
zengyawen 已提交
27 28 29
## deviceManager.createDeviceManager

createDeviceManager(bundleName: string, callback: AsyncCallback<DeviceManager>): void
Z
zengyawen 已提交
30 31

创建一个设备管理器实例。
32 33 34

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
35
**参数:**
@
@shi-xiaoxiao-iris 已提交
36

37 38 39 40
| 参数名     | 类型                                                 | 必填 | 说明                                                        |
| ---------- | ---------------------------------------------------- | ---- | ----------------------------------------------------------- |
| bundleName | string                                               | 是   | 指示应用程序的Bundle名称。                                  |
| callback   | AsyncCallback<[DeviceManager](#devicemanager)> | 是   | DeviceManager实例创建时调用的回调,返回设备管理器对象实例。 |
Z
zengyawen 已提交
41

@
@shi-xiaoxiao-iris 已提交
42
**错误码:**
@
@shi-xiaoxiao-iris 已提交
43

@
@shi-xiaoxiao-iris 已提交
44
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
45

@
@shi-xiaoxiao-iris 已提交
46
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
47 48 49
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600102 | Failed to obtain the service.                                   |
@
@shi-xiaoxiao-iris 已提交
50

@
@shi-xiaoxiao-iris 已提交
51
**示例:**
@
@shi-xiaoxiao-iris 已提交
52

53 54 55
  ```js
  try {
    deviceManager.createDeviceManager("ohos.samples.jshelloworld", (err, data) => {
Z
zengyawen 已提交
56
      if (err) { 
57
        console.error("createDeviceManager errCode:" + err.code + ",errMessage:" + err.message);
58
        return;
Z
zengyawen 已提交
59 60
      }
      console.info("createDeviceManager success");
H
HelloCrease 已提交
61
      let dmInstance = data;
62 63
    });
  } catch(err) {
64
    console.error("createDeviceManager errCode:" + err.code + ",errMessage:" + err.message);
65
  }
Z
zengyawen 已提交
66 67
  ```

68
## DeviceInfo
Z
zengyawen 已提交
69

70
设备信息。
Z
zengyawen 已提交
71

72 73
**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
74
| 名称                     | 类型                        | 必填   | 说明       |
H
HelloCrease 已提交
75 76 77 78 79
| ---------------------- | ------------------------- | ---- | -------- |
| deviceId               | string                    | 是    | 设备的唯一标识。 |
| deviceName             | string                    | 是    | 设备名称。    |
| deviceType             | [DeviceType](#devicetype) | 是    | 设备类型。    |
| networkId<sup>8+</sup> | string                    | 是    | 设备网络标识。  |
S
summer8999 已提交
80
| range<sup>9+</sup>     | number                    | 是    | 发现设备的距离。  |
W
wangxuanxuan 已提交
81
| authForm<sup>10+</sup> | [AuthForm](#authform)     | 是    | 设备认证类型  |
Z
zengyawen 已提交
82 83

## DeviceType
Z
zengyawen 已提交
84 85 86

表示设备类型的枚举类。

87 88
**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
89
| 名称           | 值  | 说明   |
H
HelloCrease 已提交
90 91 92 93 94 95 96 97
| ------------ | ---- | ---- |
| SPEAKER      | 0x0A | 智能音箱 |
| PHONE        | 0x0E | 手机   |
| TABLET       | 0x11 | 平板   |
| WEARABLE     | 0x6D | 智能穿戴 |
| TV           | 0x9C | 智慧屏  |
| CAR          | 0x83 | 车    |
| UNKNOWN_TYPE | 0    | 未知设备 |
98

W
wuqi0105 已提交
99
## AuthForm<sup>10+</sup>
W
wangxuanxuan 已提交
100 101 102 103 104 105 106 107 108 109 110

表示设备认证类型的枚举类。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

| 名称                 | 值  | 说明             |
| ------------------- | ---- | --------------- |
| INVALID_TYPE        | -1   | 设备没有认证 |
| PEER_TO_PEER        | 0    | 无账号设备点对点认证   |
| IDENTICAL_ACCOUNT   | 1    | 设备同账号认证   |
| ACROSS_ACCOUNT      | 2    | 设备跨账号认证 |
Z
zengyawen 已提交
111

112
## DeviceStateChangeAction
Z
zengyawen 已提交
113

114 115 116 117
表示设备状态变化的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
118
| 名称      | 值  | 说明              |
H
HelloCrease 已提交
119
| ------- | ---- | --------------- |
S
summer8999 已提交
120 121 122
| ONLINE  | 0    | 设备物理上线状态。           |
| READY   | 1    | 设备可用状态,表示设备间信息已在分布式数据中同步完成, 可以运行分布式业务。 |
| OFFLINE | 2    | 设备物理下线状态。           |
H
HelloCrease 已提交
123
| CHANGE  | 3    | 设备信息更改。         |
124 125 126 127

## SubscribeInfo

发现信息。
Z
zengyawen 已提交
128

129 130
**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
131
| 名称            | 类型                                | 必填   | 说明                |
H
HelloCrease 已提交
132 133
| ------------- | --------------------------------- | ---- | ----------------- |
| subscribeId   | number                            | 是    | 发现标识,用于标识不同的发现周期。 |
W
wuqi0105 已提交
134 135 136 137 138 139
| mode          | [DiscoverMode ](#discovermode)    | 是    | 发现模式。             |
| medium        | [ExchangeMedium](#exchangemedium) | 是    | 发现类型。             |
| freq          | [ExchangeFreq](#exchangefreq)     | 是    | 发现频率。             |
| isSameAccount | boolean                           | 是    | 是否同帐号。            |
| isWakeRemote  | boolean                           | 是    | 是否唤醒设备。           |
| capability    | [SubscribeCap](#subscribecap)     | 是    | 发现能力。             |
140 141 142 143 144 145 146 147


## DiscoverMode 

表示发现模式的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
148
| 名称                    | 值  | 说明    |
H
HelloCrease 已提交
149
| --------------------- | ---- | ----- |
150
| DISCOVER_MODE_PASSIVE | 0x55 | 被动模式。 |
H
HelloCrease 已提交
151
| DISCOVER_MODE_ACTIVE  | 0xAA | 主动模式。 |
152 153 154 155 156 157 158 159


## ExchangeMedium 

表示发现类型的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
160
| 名称   | 值  | 说明        |
H
HelloCrease 已提交
161 162 163 164 165
| ---- | ---- | --------- |
| AUTO | 0    | 自动发现类型。   |
| BLE  | 1    | 蓝牙发现类型。   |
| COAP | 2    | WiFi发现类型。 |
| USB  | 3    | USB发现类型。  |
166 167 168 169 170 171 172

## ExchangeFreq 

表示发现频率的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
173
| 名称         | 值  | 说明    |
H
HelloCrease 已提交
174 175 176 177 178
| ---------- | ---- | ----- |
| LOW        | 0    | 低频率。  |
| MID        | 1    | 中频率。  |
| HIGH       | 2    | 高频率。  |
| SUPER_HIGH | 3    | 超高频率。 |
179 180 181 182 183 184 185 186


## SubscribeCap 

表示发现能力的枚举。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
187
| 名称                        | 值  | 说明             |
H
HelloCrease 已提交
188 189 190
| ------------------------- | ---- | -------------- |
| SUBSCRIBE_CAPABILITY_DDMP | 0    | DDMP能力,后续会被废弃。 |
| SUBSCRIBE_CAPABILITY_OSD  | 1    | OSD能力。         |
191 192 193 194 195 196 197 198


## AuthParam

认证参数。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
199
| 名称        | 类型                   | 必填   | 说明         |
H
HelloCrease 已提交
200 201
| --------- | -------------------- | ---- | ---------- |
| authType  | number               | 是    | 认证类型。      |
W
wangxuanxuan 已提交
202
| extraInfo | {[key:string]&nbsp;:&nbsp;any} | 否    | 认证参数可扩展字段。可选,默认为undefined。 |
203 204 205 206 207 208 209

## AuthInfo

认证信息。

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
210
| 名称        | 类型                   | 必填   | 说明         |
H
HelloCrease 已提交
211 212 213
| --------- | -------------------- | ---- | ---------- |
| authType  | number               | 是    | 认证类型。      |
| token     | number               | 是    | 认证Token。   |
W
wangxuanxuan 已提交
214
| extraInfo | {[key:string]&nbsp;:&nbsp;any} | 否    | 认证信息可扩展字段。可选,默认为undefined。 |
Z
zengyawen 已提交
215

@
@shi-xiaoxiao-iris 已提交
216
## PublishInfo<sup>9+</sup>
S
summer8999 已提交
217 218 219 220 221

发布设备参数

**系统能力**:以下各项对应的系统能力均为SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
222
| 名称          | 类型                              | 必填   | 说明                |
S
summer8999 已提交
223 224 225 226 227
| ------------- | --------------------------------- | ---- | ----------------- |
| publishId     | number                            | 是    | 发布设备标识,用于标识不同的发布周期。 |
| mode          | [DiscoverMode ](#discovermode)    | 是    | 发现模式。             |
| freq          | [ExchangeFreq](#exchangefreq)     | 是    | 发现频率。             |
| ranging       | boolean                           | 是    | 发布的设备是否支持测距能力。             |
Z
zengyawen 已提交
228 229

## DeviceManager
Z
zengyawen 已提交
230 231 232

设备管理实例,用于获取可信设备和本地设备的相关信息。在调用DeviceManager的方法前,需要先通过createDeviceManager构建一个DeviceManager实例dmInstance。

Z
zengyawen 已提交
233
### release
Z
zengyawen 已提交
234

Z
zengyawen 已提交
235
release(): void
Z
zengyawen 已提交
236

Z
zengyawen 已提交
237
设备管理实例不再使用后,通过该方法释放DeviceManager实例。
Z
zengyawen 已提交
238

239 240
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
241
**错误码:**
@
@shi-xiaoxiao-iris 已提交
242

@
@shi-xiaoxiao-iris 已提交
243
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
244

@
@shi-xiaoxiao-iris 已提交
245
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
246 247
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
248

@
@shi-xiaoxiao-iris 已提交
249
**示例:**
@
@shi-xiaoxiao-iris 已提交
250

251
  ```js
252 253 254
  try {
    dmInstance.release();
  } catch (err) {
255
    console.error("release errCode:" + err.code + ",errMessage:" + err.message);
256
  }
Z
zengyawen 已提交
257
  ```
Z
zengyawen 已提交
258

Z
zengyawen 已提交
259
### getTrustedDeviceListSync
Z
zengyawen 已提交
260

Z
zengyawen 已提交
261
getTrustedDeviceListSync(): Array&lt;DeviceInfo&gt;
Z
zengyawen 已提交
262 263 264

同步获取所有可信设备列表。

265 266
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
267
**返回值:**
@
@shi-xiaoxiao-iris 已提交
268

H
HelloCrease 已提交
269 270
  | 名称                                     | 说明        |
  | -------------------------------------- | --------- |
Z
zengyawen 已提交
271 272
  | Array&lt;[DeviceInfo](#deviceinfo)&gt; | 返回可信设备列表。 |

@
@shi-xiaoxiao-iris 已提交
273
**错误码:**
@
@shi-xiaoxiao-iris 已提交
274

@
@shi-xiaoxiao-iris 已提交
275
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
276

@
@shi-xiaoxiao-iris 已提交
277
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
278 279
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
280

@
@shi-xiaoxiao-iris 已提交
281
**示例:**
@
@shi-xiaoxiao-iris 已提交
282

283
  ```js
284 285 286
  try {
    var deviceInfoList = dmInstance.getTrustedDeviceListSync();
  } catch (err) {
287
    console.error("getTrustedDeviceListSync errCode:" + err.code + ",errMessage:" + err.message);
288
  }
Z
zengyawen 已提交
289
  ```
W
wuxiaodong02 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
### getTrustedDeviceListSync

getTrustedDeviceListSync(isRefresh: boolean): Array&lt;DeviceInfo&gt;

刷新可信设备列表,让周围可信设备快速上线。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

| 参数名        | 类型                               | 必填 | 说明                       |
| ------------- | --------------------------------- | ---- | ------------------------- |
|   isRefresh   | boolean                           | 是   | 是否刷新                   |

**返回值:**

| 名称                                     | 说明            |
| -------------------------------------- | ---------------- |
| Array&lt;[DeviceInfo](#deviceinfo)&gt; | 返回可信设备列表。 |

**错误码:**

以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)

| 错误码ID | 错误信息                                                         |
| -------- | --------------------------------------------------------------- |
|    401   | Input parameter error.                                          |
| 11600101 | Failed to execute the function.                                 |

**示例:**

  ```js
  try {
    var deviceInfoList = dmInstance.getTrustedDeviceListSync(true);
  } catch (err) {
    console.error("getTrustedDeviceListSync errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```
Z
zengyawen 已提交
328

329 330 331 332 333 334 335 336
### getTrustedDeviceList<sup>8+</sup>

getTrustedDeviceList(callback:AsyncCallback&lt;Array&lt;DeviceInfo&gt;&gt;): void

获取所有可信设备列表。使用callback异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
337
**参数:**
@
@shi-xiaoxiao-iris 已提交
338

@
@shi-xiaoxiao-iris 已提交
339
  | 参数名       | 类型                                     | 必填   | 说明                    |
H
HelloCrease 已提交
340 341
  | -------- | ---------------------------------------- | ---- | --------------------- |
  | callback | AsyncCallback&lt;Array&lt;[DeviceInfo](#deviceinfo)&gt;&gt; | 是    | 获取所有可信设备列表的回调,返回设备信息。 |
342

@
@shi-xiaoxiao-iris 已提交
343
**错误码:**
@
@shi-xiaoxiao-iris 已提交
344

@
@shi-xiaoxiao-iris 已提交
345
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
346

@
@shi-xiaoxiao-iris 已提交
347
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
348 349
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
350

@
@shi-xiaoxiao-iris 已提交
351
**示例:**
@
@shi-xiaoxiao-iris 已提交
352

353
  ```js
354 355 356
  try {
    dmInstance.getTrustedDeviceList((err, data) => {
      if (err) {
357
        console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
358 359
        return;
      }
360
      console.log('get trusted device info: ' + JSON.stringify(data));
361
    });
362
  } catch (err) {
363
    console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
364
  }
365 366 367 368 369 370 371 372 373 374
  ```

### getTrustedDeviceList<sup>8+</sup>

getTrustedDeviceList(): Promise&lt;Array&lt;DeviceInfo&gt;&gt;

获取所有可信设备列表。使用Promise异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
375
**返回值:**
@
@shi-xiaoxiao-iris 已提交
376

H
HelloCrease 已提交
377 378
  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
379 380
  | Promise&lt;Array&lt;[DeviceInfo](#deviceinfo)&gt;&gt; | Promise实例,用于获取异步返回结果。 |

@
@shi-xiaoxiao-iris 已提交
381
**错误码:**
@
@shi-xiaoxiao-iris 已提交
382

@
@shi-xiaoxiao-iris 已提交
383
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
384

@
@shi-xiaoxiao-iris 已提交
385
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
386 387
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
388

@
@shi-xiaoxiao-iris 已提交
389
**示例:**
@
@shi-xiaoxiao-iris 已提交
390

391
  ```js
392 393 394
  dmInstance.getTrustedDeviceList().then((data) => {
    console.log('get trusted device info: ' + JSON.stringify(data));
    }).catch((err) => {
395
      console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
396
  });
397 398 399 400 401 402 403 404 405 406
  ```

### getLocalDeviceInfoSync<sup>8+</sup>

getLocalDeviceInfoSync(): [DeviceInfo](#deviceinfo)

同步获取本地设备信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
407
**返回值:**
@
@shi-xiaoxiao-iris 已提交
408

409 410 411
  | 名称                      | 说明              |
  | ------------------------- | ---------------- |
  | [DeviceInfo](#deviceinfo) | 返回本地设备列表。 |
412

@
@shi-xiaoxiao-iris 已提交
413
**错误码:**
@
@shi-xiaoxiao-iris 已提交
414

@
@shi-xiaoxiao-iris 已提交
415
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
416

@
@shi-xiaoxiao-iris 已提交
417
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
418 419
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
420

@
@shi-xiaoxiao-iris 已提交
421
**示例:**
@
@shi-xiaoxiao-iris 已提交
422

423
  ```js
424 425 426
  try {
    var deviceInfo = dmInstance.getLocalDeviceInfoSync();
  } catch (err) {
427
    console.error("getLocalDeviceInfoSync errCode:" + err.code + ",errMessage:" + err.message);
428
  }
429 430 431 432 433 434 435 436 437 438
  ```

### getLocalDeviceInfo<sup>8+</sup>

getLocalDeviceInfo(callback:AsyncCallback&lt;DeviceInfo&gt;): void

获取本地设备信息。使用callback异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
439
**参数:**
@
@shi-xiaoxiao-iris 已提交
440

@
@shi-xiaoxiao-iris 已提交
441
  | 参数名       | 类型                                     | 必填   | 说明        |
H
HelloCrease 已提交
442 443
  | -------- | ---------------------------------------- | ---- | --------- |
  | callback | AsyncCallback&lt;[DeviceInfo](#deviceinfo)&gt; | 是    | 获取本地设备信息。 |
444

@
@shi-xiaoxiao-iris 已提交
445
**错误码:**
@
@shi-xiaoxiao-iris 已提交
446

@
@shi-xiaoxiao-iris 已提交
447
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
448

@
@shi-xiaoxiao-iris 已提交
449
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
450 451
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
452

@
@shi-xiaoxiao-iris 已提交
453
**示例:**
@
@shi-xiaoxiao-iris 已提交
454

455
  ```js
456
  try {
457
    dmInstance.getLocalDeviceInfo((err, data) => {
458
    if (err) {
459
      console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
460
      return;
461
    }
462 463 464
      console.log('get local device info: ' + JSON.stringify(data));
    });
  } catch (err) {
465
    console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
466
  }
467 468 469 470 471 472 473 474 475 476
  ```

### getLocalDeviceInfo<sup>8+</sup>

getLocalDeviceInfo(): Promise&lt;DeviceInfo&gt;

获取本地设备信息。使用Promise异步回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
477 478
**返回值:**

H
HelloCrease 已提交
479 480
  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
481 482
  | Promise&lt;[DeviceInfo](#deviceinfo)&gt; | Promise实例,用于获取异步返回结果。 |

@
@shi-xiaoxiao-iris 已提交
483
**错误码:**
@
@shi-xiaoxiao-iris 已提交
484

@
@shi-xiaoxiao-iris 已提交
485
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
486

@
@shi-xiaoxiao-iris 已提交
487
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
488 489 490
| ------- | --------------------------------------------------------------- |
| 11600101| Failed to execute the function.                                 |

@
@shi-xiaoxiao-iris 已提交
491
**示例:**
@
@shi-xiaoxiao-iris 已提交
492

493
  ```js
494 495 496
  dmInstance.getLocalDeviceInfo().then((data) => {
    console.log('get local device info: ' + JSON.stringify(data));
  }).catch((err) => {
497
    console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
498
  });
499 500
  ```

S
summer8999 已提交
501 502
### getDeviceInfo<sup>10+</sup>

S
summer8999 已提交
503
getDeviceInfo(networkId: string, callback:AsyncCallback&lt;DeviceInfo&gt;): void
S
summer8999 已提交
504

S
summer8999 已提交
505
通过指定设备的网络标识获取该设备的信息。使用callback异步回调。
S
summer8999 已提交
506 507 508 509 510 511 512

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型                                     | 必填   | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
S
summer8999 已提交
513
  | networkId| string                                   | 是   | 设备的网络标识。 |
S
summer8999 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526 527
  | callback | AsyncCallback&lt;[DeviceInfo](#deviceinfo)&gt; | 是    | 获取指定设备信息。 |

**错误码:**

以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)

| 错误码ID | 错误信息                                                        |
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |

**示例:**

  ```js
  try {
W
wangxuanxuan 已提交
528 529
    // 设备网络标识,可以从可信设备列表中获取
    let networkId = "xxxxxxx"
S
summer8999 已提交
530 531 532 533 534 535 536 537 538 539 540 541 542 543
    dmInstance.getDeviceInfo(networkId, (err, data) => {
    if (err) {
      console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
      return;
    }
      console.log('get device info: ' + JSON.stringify(data));
    });
  } catch (err) {
    console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

### getDeviceInfo<sup>10+</sup>

S
summer8999 已提交
544
getDeviceInfo(networkId: string): Promise&lt;DeviceInfo&gt;
S
summer8999 已提交
545

S
summer8999 已提交
546
通过指定设备的网络标识获取该设备的信息。使用Promise异步回调。
S
summer8999 已提交
547 548 549

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

S
summer8999 已提交
550 551 552 553 554 555
**参数:**

  | 参数名   | 类型                                     | 必填 | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
  | networkId| string                                   | 是   | 设备的网络标识。 |
  
S
summer8999 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
**返回值:**

  | 类型                                       | 说明                    |
  | ---------------------------------------- | --------------------- |
  | Promise&lt;[DeviceInfo](#deviceinfo)&gt; | Promise实例,用于获取异步返回结果。 |

**错误码:**

以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)

| 错误码ID | 错误信息                                                        |
| ------- | --------------------------------------------------------------- |
| 11600101| Failed to execute the function.                                 |

**示例:**

  ```js
W
wangxuanxuan 已提交
573 574
  // 设备网络标识,可以从可信设备列表中获取
  let networkId = "xxxxxxx"
S
summer8999 已提交
575 576 577 578 579 580 581
  dmInstance.getDeviceInfo(networkId).then((data) => {
    console.log('get device info: ' + JSON.stringify(data));
  }).catch((err) => {
    console.error("getDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
  });
  ```

@
@shi-xiaoxiao-iris 已提交
582
### startDeviceDiscovery<sup>8+</sup>
583 584 585

startDeviceDiscovery(subscribeInfo: SubscribeInfo): void

W
wangxuanxuan 已提交
586
发现周边设备。发现状态持续两分钟,超过两分钟,会停止发现,最大发现数量99个。
587 588 589

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
590
**参数:**
@
@shi-xiaoxiao-iris 已提交
591

@
@shi-xiaoxiao-iris 已提交
592
  | 参数名            | 类型                       | 必填 | 说明    |
H
HelloCrease 已提交
593
  | ------------- | ------------------------------- | ---- | ----- |
594
  | subscribeInfo | [SubscribeInfo](#subscribeinfo) | 是   | 发现信息。|
595

@
@shi-xiaoxiao-iris 已提交
596
**错误码:**
@
@shi-xiaoxiao-iris 已提交
597

@
@shi-xiaoxiao-iris 已提交
598
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
599

@
@shi-xiaoxiao-iris 已提交
600
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
601 602 603 604
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
605
**示例:**
@
@shi-xiaoxiao-iris 已提交
606

607
  ```js
608
  // 生成发现标识,随机数确保每次调用发现接口的标识不一致
609 610 611
  var subscribeId = Math.floor(Math.random() * 10000 + 1000);
  var subscribeInfo = {
      "subscribeId": subscribeId,
612 613 614
      "mode": 0xAA, // 主动模式
      "medium": 0,  // 自动发现类型,同时支持多种发现类型
      "freq": 2,    // 高频率
615 616 617 618
      "isSameAccount": false,
      "isWakeRemote": false,
      "capability": 1
  };
619 620 621
  try {
    dmInstance.startDeviceDiscovery(subscribeInfo); // 当有设备发现时,通过deviceFound回调通知给应用程序
  } catch (err) {
622
    console.error("startDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
623
  }
624 625
  ```

@
@shi-xiaoxiao-iris 已提交
626
### startDeviceDiscovery<sup>9+</sup>
S
summer8999 已提交
627

S
summer8999 已提交
628
startDeviceDiscovery(subscribeInfo: SubscribeInfo, filterOptions?: string): void
S
summer8999 已提交
629

W
wangxuanxuan 已提交
630
发现周边设备。发现状态持续两分钟,超过两分钟,会停止发现,最大发现数量99个。
S
summer8999 已提交
631 632 633

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
634
**参数:**
@
@shi-xiaoxiao-iris 已提交
635

@
@shi-xiaoxiao-iris 已提交
636
  | 参数名            | 类型                       | 必填   | 说明    |
637
  | ------------- | ------------------------------- | ---- | -----  |
S
summer8999 已提交
638
  | subscribeInfo | [SubscribeInfo](#subscribeinfo) | 是   | 发现信息。 |
W
wangxuanxuan 已提交
639
  | filterOptions | string                          | 否   | 发现设备过滤信息。可选,默认为undefined,发现未上线设备。|
S
summer8999 已提交
640

@
@shi-xiaoxiao-iris 已提交
641
**错误码:**
@
@shi-xiaoxiao-iris 已提交
642

@
@shi-xiaoxiao-iris 已提交
643
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
644

@
@shi-xiaoxiao-iris 已提交
645
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
646 647 648 649
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
650
**示例:**
@
@shi-xiaoxiao-iris 已提交
651

S
summer8999 已提交
652
  ```js
653
  // 生成发现标识,随机数确保每次调用发现接口的标识不一致
S
summer8999 已提交
654 655 656
  var subscribeId = Math.floor(Math.random() * 10000 + 1000);
  var subscribeInfo = {
      "subscribeId": subscribeId,
657 658 659
      "mode": 0xAA, // 主动模式
      "medium": 0,  // 自动发现类型,同时支持多种发现类型
      "freq": 2,    // 高频率
S
summer8999 已提交
660 661 662 663 664
      "isSameAccount": false,
      "isWakeRemote": false,
      "capability": 1
  };
  var filterOptions = {
S
summer8999 已提交
665
    "filter_op": "OR", // 可选, 默认"OR"
S
summer8999 已提交
666 667 668
    "filters": [
        {
            "type": "range",
S
summer8999 已提交
669
            "value": 50 // 需过滤发现设备的距离,单位(cm)
S
summer8999 已提交
670 671
        }
    ]
S
summer8999 已提交
672
  };
673 674 675
  try {
    dmInstance.startDeviceDiscovery(subscribeInfo, JSON.stringify(filterOptions)); // 当有设备发现时,通过deviceFound回调通知给应用程序
  } catch (err) {
676
    console.error("startDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
677
  }
S
summer8999 已提交
678
  ```
@
@shi-xiaoxiao-iris 已提交
679

680 681 682 683 684 685 686 687
### stopDeviceDiscovery

stopDeviceDiscovery(subscribeId: number): void

停止发现周边设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
688
**参数:**
@
@shi-xiaoxiao-iris 已提交
689

@
@shi-xiaoxiao-iris 已提交
690
  | 参数名          | 类型   | 必填   | 说明    |
H
HelloCrease 已提交
691 692
  | ----------- | ------ | ---- | ----- |
  | subscribeId | number | 是    | 发现标识。 |
693

@
@shi-xiaoxiao-iris 已提交
694
**错误码:**
@
@shi-xiaoxiao-iris 已提交
695

@
@shi-xiaoxiao-iris 已提交
696
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
697

@
@shi-xiaoxiao-iris 已提交
698
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
699 700
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
701

@
@shi-xiaoxiao-iris 已提交
702
**示例:**
@
@shi-xiaoxiao-iris 已提交
703

704
  ```js
705
  try {
706 707
    // stopDeviceDiscovery和startDeviceDiscovery需配对使用,入参需要和startDeviceDiscovery接口传入的subscribeId值相等
    var subscribeId = 12345;
708 709
    dmInstance.stopDeviceDiscovery(subscribeId);
  } catch (err) {
710
    console.error("stopDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
711
  }
712 713
  ```

@
@shi-xiaoxiao-iris 已提交
714
### publishDeviceDiscovery<sup>9+</sup>
S
summer8999 已提交
715

S
summer8999 已提交
716
publishDeviceDiscovery(publishInfo: PublishInfo): void
S
summer8999 已提交
717

W
wangxuanxuan 已提交
718
发布设备发现。发布状态持续两分钟,超过两分钟会停止发布。
S
summer8999 已提交
719 720 721

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
722
**参数:**
@
@shi-xiaoxiao-iris 已提交
723

@
@shi-xiaoxiao-iris 已提交
724
  | 参数名          | 类型                        | 必填 | 说明    |
S
summer8999 已提交
725 726 727
  | ------------- | ------------------------------- | ---- | ----- |
  | publishInfo   | [PublishInfo](#publishinfo)     | 是   | 发布设备发现信息。 |

@
@shi-xiaoxiao-iris 已提交
728
**错误码:**
@
@shi-xiaoxiao-iris 已提交
729

@
@shi-xiaoxiao-iris 已提交
730
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
731

@
@shi-xiaoxiao-iris 已提交
732
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
733 734 735
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600105 | Publish invalid.                                                |
@
@shi-xiaoxiao-iris 已提交
736

@
@shi-xiaoxiao-iris 已提交
737
**示例:**
@
@shi-xiaoxiao-iris 已提交
738

S
summer8999 已提交
739
  ```js
740
  // 生成发布标识,随机数确保每次调用发布接口的标识不一致
S
summer8999 已提交
741
  var publishId = Math.floor(Math.random() * 10000 + 1000);
S
summer8999 已提交
742
  var publishInfo = {
S
summer8999 已提交
743
      "publishId": publishId,
744 745
      "mode": 0xAA, // 主动模式
      "freq": 2,    // 高频率
746
      "ranging": true  // 支持发现时测距
S
summer8999 已提交
747
  };
748 749 750
  try {
    dmInstance.publishDeviceDiscovery(publishInfo); // 当有发布结果时,通过回调通知给应用程序
  } catch (err) {
751
    console.error("publishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
752
  }
S
summer8999 已提交
753
  ```
754

@
@shi-xiaoxiao-iris 已提交
755
### unPublishDeviceDiscovery<sup>9+</sup>
S
summer8999 已提交
756

S
summer8999 已提交
757
unPublishDeviceDiscovery(publishId: number): void
S
summer8999 已提交
758 759 760 761 762

停止发布设备发现。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
763
**参数:**
@
@shi-xiaoxiao-iris 已提交
764

@
@shi-xiaoxiao-iris 已提交
765
  | 参数名        | 类型 | 必填 | 说明  |
S
summer8999 已提交
766 767
  | ----------- | -------- | ---- | ----- |
  | publishId   | number   | 是   | 发布标识。 |
S
summer8999 已提交
768

@
@shi-xiaoxiao-iris 已提交
769
**错误码:**
@
@shi-xiaoxiao-iris 已提交
770

@
@shi-xiaoxiao-iris 已提交
771
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
772

@
@shi-xiaoxiao-iris 已提交
773
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
774 775
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
776

@
@shi-xiaoxiao-iris 已提交
777
**示例:**
@
@shi-xiaoxiao-iris 已提交
778

S
summer8999 已提交
779
  ```js
780
  try {
781 782
    // unPublishDeviceDiscovery和publishDeviceDiscovery配对使用,入参需要和publishDeviceDiscovery接口传入的publishId值相等
    var publishId = 12345;
783
    dmInstance.unPublishDeviceDiscovery(publishId);
784
  } catch (err) {
785
    console.error("unPublishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
786
  }
S
summer8999 已提交
787 788
  ```

789 790
### authenticateDevice

791
authenticateDevice(deviceInfo: DeviceInfo, authParam: AuthParam, callback: AsyncCallback&lt;{deviceId: string, pinToken ?: number}&gt;): void
792 793 794 795 796

认证设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
797
**参数:**
@
@shi-xiaoxiao-iris 已提交
798

@
@shi-xiaoxiao-iris 已提交
799
  | 参数名         | 类型                                     | 必填   | 说明      |
H
HelloCrease 已提交
800 801 802
  | ---------- | ---------------------------------------- | ---- | ------- |
  | deviceInfo | [DeviceInfo](#deviceinfo)                | 是    | 设备信息。   |
  | authParam  | [AuthParam](#authparam)                  | 是    | 认证参数。   |
803
  | callback   | AsyncCallback&lt;{deviceId:&nbsp;string,&nbsp;pinToken&nbsp;?:&nbsp;number}&gt; | 是    | 认证结果回调。 |
804

@
@shi-xiaoxiao-iris 已提交
805
**错误码:**
@
@shi-xiaoxiao-iris 已提交
806

@
@shi-xiaoxiao-iris 已提交
807
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
808

@
@shi-xiaoxiao-iris 已提交
809
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
810 811 812
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600103 | Authentication invalid.                                         |
@
@shi-xiaoxiao-iris 已提交
813

@
@shi-xiaoxiao-iris 已提交
814
**示例:**
@
@shi-xiaoxiao-iris 已提交
815

816
  ```js
817
  // 认证的设备信息,可以从发现的结果中获取
818 819 820
  var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
821 822 823
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
824
  };
825 826 827 828 829
  let extraInfo = {
          'targetPkgName': 'ohos.samples.xxx',
          'appName': 'xxx',
          'appDescription': 'xxx',
          'business': '0'
830
  }
831
  let authParam = {
832 833
      'authType': 1,// 认证类型: 1 - 无帐号PIN码认证
      'extraInfo': extraInfo
834
  }
835 836
  try {
    dmInstance.authenticateDevice(deviceInfo, authParam, (err, data) => {
837
      if (err) {
838
          console.error("authenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
839 840
          return;
      }
@
@shi-xiaoxiao-iris 已提交
841 842
      console.info("authenticateDevice result:" + JSON.stringify(data));
      let token = data.pinToken;
843 844
    });
  } catch (err) {
845
    console.error("authenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
846
  }
847 848 849 850 851 852 853 854 855 856
  ```

### unAuthenticateDevice<sup>8+</sup>

unAuthenticateDevice(deviceInfo: DeviceInfo): void

解除认证设备。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
857
**参数:**
@
@shi-xiaoxiao-iris 已提交
858

@
@shi-xiaoxiao-iris 已提交
859
  | 参数名         | 类型                      | 必填   | 说明    |
H
HelloCrease 已提交
860 861
  | ---------- | ------------------------- | ---- | ----- |
  | deviceInfo | [DeviceInfo](#deviceinfo) | 是    | 设备信息。 |
862

@
@shi-xiaoxiao-iris 已提交
863
**错误码:**
@
@shi-xiaoxiao-iris 已提交
864

@
@shi-xiaoxiao-iris 已提交
865
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
866

@
@shi-xiaoxiao-iris 已提交
867
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
868 869
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
870

@
@shi-xiaoxiao-iris 已提交
871
**示例:**
@
@shi-xiaoxiao-iris 已提交
872

873
  ```js
874
  try {
875 876 877 878 879 880 881
    var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
    };
882 883
    dmInstance.unAuthenticateDevice(deviceInfo);
  } catch (err) {
884
    console.error("unAuthenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
885
  }
886 887 888 889
  ```

### verifyAuthInfo

890
verifyAuthInfo(authInfo: AuthInfo, callback: AsyncCallback&lt;{deviceId: string, level: number}&gt;): void
891 892 893 894 895

验证认证信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
896
**参数:**
@
@shi-xiaoxiao-iris 已提交
897

@
@shi-xiaoxiao-iris 已提交
898
  | 参数名       | 类型                                     | 必填   | 说明      |
H
HelloCrease 已提交
899 900
  | -------- | ---------------------------------------- | ---- | ------- |
  | authInfo | [AuthInfo](#authinfo)                    | 是    | 认证信息。   |
901
  | callback | AsyncCallback&lt;{deviceId:&nbsp;string,&nbsp;level:&nbsp;number}&gt; | 是    | 验证结果回调。 |
902

@
@shi-xiaoxiao-iris 已提交
903
**错误码:**
@
@shi-xiaoxiao-iris 已提交
904

@
@shi-xiaoxiao-iris 已提交
905
以下的错误码的详细介绍请参见[设备管理错误码](../errorcodes/errorcode-device-manager.md)
@
@shi-xiaoxiao-iris 已提交
906

@
@shi-xiaoxiao-iris 已提交
907
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
908 909
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
910

@
@shi-xiaoxiao-iris 已提交
911
**示例:**
@
@shi-xiaoxiao-iris 已提交
912

913 914 915
  ```js
  let authInfo = {
    "authType": 1,
916
    "token": 123456,
917 918
    "extraInfo": {}
  }
919 920
  try {
    dmInstance.verifyAuthInfo(authInfo, (err, data) => {
921
    if (err) {
922
        console.error("verifyAuthInfo errCode:" + err.code + ",errMessage:" + err.message);
923 924
        return;
    }
@
@shi-xiaoxiao-iris 已提交
925
    console.info("verifyAuthInfo result:" + JSON.stringify(data));
926 927
    });
  } catch (err) {
928
    console.error("verifyAuthInfo errCode:" + err.code + ",errMessage:" + err.message);
929
  }
930 931
  ```

@
@shi-xiaoxiao-iris 已提交
932
### setUserOperation<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
933 934 935 936 937 938 939

setUserOperation(operateAction: number, params: string): void;

设置用户ui操作行为。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
940
**参数:**
@
@shi-xiaoxiao-iris 已提交
941

@
@shi-xiaoxiao-iris 已提交
942
  | 参数名       | 类型            | 必填  | 说明                |
943 944 945
  | ------------- | --------------- | ---- | ------------------- |
  | operateAction | number          | 是    | 用户操作动作。       |
  | params        | string          | 是    | 表示用户的输入参数。 |
@
@shi-xiaoxiao-iris 已提交
946

@
@shi-xiaoxiao-iris 已提交
947
**示例:**
@
@shi-xiaoxiao-iris 已提交
948 949

  ```js
@
@shi-xiaoxiao-iris 已提交
950 951 952 953 954 955 956 957 958 959
 try {
    /*
      operateAction = 0 - 允许授权
      operateAction = 1 - 取消授权
      operateAction = 2 - 授权框用户操作超时
      operateAction = 3 - 取消pin码框展示
      operateAction = 4 - 取消pin码输入框展示
      operateAction = 5 - pin码输入框确定操作
    */
    let operation = 0;
960
    dmInstance.setUserOperation(operation, "extra")
@
@shi-xiaoxiao-iris 已提交
961 962
    } catch (err) {
      console.error("setUserOperation errCode:" + err.code + ",errMessage:" + err.message);
@
@shi-xiaoxiao-iris 已提交
963 964 965
  }
  ```

W
wuqi0105 已提交
966
### requestCredentialRegisterInfo<sup>10+</sup>
W
wuqi0105 已提交
967

W
wuqi0105 已提交
968
requestCredentialRegisterInfo(requestInfo: string, callback: AsyncCallback<{registerInfo: string}>): void;
W
wuqi0105 已提交
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988

获取凭据的注册信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型            | 必填  | 说明                |
  | ------------- | --------------- | ---- | ------------------- |
  | requestInfo   | string          | 是    | 请求凭据信息。       |
  | callback      | AsyncCallback<{registerInfo: string}>         | 是    | 凭据的注册信息回调。 |

**示例:**

  ```js
  let credentialInfo = {
    "version" : "1.2.3",
    "userId" : "123"
  }
  try {
W
wangxuanxuan 已提交
989
    dmInstance.requestCredentialRegisterInfo(credentialInfo, (data) => {
W
wuqi0105 已提交
990
      if (data) {
W
wuqi0105 已提交
991
          console.info("requestCredentialRegisterInfo result:" + JSON.stringify(data));
W
wuqi0105 已提交
992
      } else {
W
wangxuanxuan 已提交
993
          console.info("requestCredentialRegisterInfo result: data is null");
W
wuqi0105 已提交
994 995 996
      }
    });
  } catch (err) {
W
wuqi0105 已提交
997
    console.error("requestCredentialRegisterInfo err:" + err.code + "," + err.message);
W
wuqi0105 已提交
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
  }
  ```

### importCredential<sup>10+</sup>

importCredential(credentialInfo: string, callback: AsyncCallback<{resultInfo: string}>): void;

导入凭据信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型            | 必填  | 说明                |
  | ------------- | --------------- | ---- | ------------------- |
  | credentialInfo| string          | 是    | 导入凭据信息。       |
  | callback      | AsyncCallback<{resultInfo: string}>           | 是    | 导入凭据结果回调。 |

**示例:**

  ```js
  let credentialInfo = {
    "processType" : 1,
    "authType" : 1,
    "userId" : "123",
    "deviceId" : "aaa",
    "version" : "1.2.3",
    "devicePk" : "0000",
    "credentialData" : 
    [
      {
        "credentialType" : 2,
        "credentialId" : "102",
        "serverPk" : "3059301306072A8648CE3D020106082A8648CE3D03",
        "pkInfoSignature" : "30440220490BCB4F822004C9A76AB8D97F80041FC0E",
        "pkInfo" : "",
        "authCode" : "",
        "peerDeviceId" : ""
      }
    ]
  }
  try {
W
wangxuanxuan 已提交
1040
    dmInstance.importCredential(credentialInfo, (data) => {
W
wuqi0105 已提交
1041 1042 1043
      if (data) {
          console.info("importCredential result:" + JSON.stringify(data));
      } else {
W
wangxuanxuan 已提交
1044
          console.info("importCredential result: data is null");
W
wuqi0105 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
      }
    });
  } catch (err) {
    console.error("importCredential err:" + err.code + "," + err.message);
  }
  ```

### deleteCredential<sup>10+</sup>

deleteCredential(queryInfo: string, callback: AsyncCallback<{resultInfo: string}>): void;

删除凭据信息。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

**参数:**

  | 参数名       | 类型            | 必填  | 说明                |
  | ------------- | --------------- | ---- | ------------------- |
  | queryInfo     | string          | 是    | 删除凭据信息。       |
  | callback      | AsyncCallback<{resultInfo: string}>           | 是    | 删除凭据结果回调。 |

**示例:**

  ```js
  let queryInfo = {
    "processType" : 1,
    "authType" : 1,
    "userId" : "123"
  }
  try {
W
wangxuanxuan 已提交
1076
    dmInstance.deleteCredential(queryInfo, (data) => {
W
wuqi0105 已提交
1077 1078 1079
      if (data) {
          console.info("deleteCredential result:" + JSON.stringify(data));
      } else {
W
wangxuanxuan 已提交
1080
          console.info("deleteCredential result: data is null");
W
wuqi0105 已提交
1081 1082 1083 1084 1085 1086 1087
      }
    });
  } catch (err) {
    console.error("deleteCredential err:" + err.code + "," + err.message);
  }
  ```

@
@shi-xiaoxiao-iris 已提交
1088
### on('uiStateChange')<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
1089

1090
on(type: 'uiStateChange', callback: Callback&lt;{ param: string}&gt;): void;
@
@shi-xiaoxiao-iris 已提交
1091 1092 1093 1094 1095

ui状态变更回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1096
**参数:**
@
@shi-xiaoxiao-iris 已提交
1097

@
@shi-xiaoxiao-iris 已提交
1098
  | 参数名      | 类型                             | 必填 | 说明                            |
@
@shi-xiaoxiao-iris 已提交
1099 1100
  | -------- | ------------------------------------ | ---- | ------------------------------ |
  | type     | string                                | 是  | 注册的设备管理器 ui 状态回调,以便在状态改变时通知应用。 |
1101
  | callback | Callback&lt;{&nbsp;param:&nbsp;string}&gt; | 是  | 指示要注册的设备管理器 ui 状态回调,返回ui状态。        |
@
@shi-xiaoxiao-iris 已提交
1102

@
@shi-xiaoxiao-iris 已提交
1103
**示例:**
@
@shi-xiaoxiao-iris 已提交
1104 1105 1106

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1107
    dmInstance.on('uiStateChange', (data) => {
@
@shi-xiaoxiao-iris 已提交
1108 1109
    console.log("uiStateChange executed, dialog closed" + JSON.stringify(data))
    var tmpStr = JSON.parse(data.param)
1110 1111
    var isShow = tmpStr.verifyFailed
    console.log("uiStateChange executed, dialog closed" + isShow)
@
@shi-xiaoxiao-iris 已提交
1112 1113 1114 1115 1116 1117
  });
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

@
@shi-xiaoxiao-iris 已提交
1118
### off('uiStateChange')<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
1119

1120
off(type: 'uiStateChange', callback?: Callback&lt;{ param: string}&gt;): void;
@
@shi-xiaoxiao-iris 已提交
1121

1122 1123
取消ui状态变更回调。

@
@shi-xiaoxiao-iris 已提交
1124 1125
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1126
**参数:**
@
@shi-xiaoxiao-iris 已提交
1127

@
@shi-xiaoxiao-iris 已提交
1128
  | 参数名      | 类型                              | 必填 | 说明                            |
@
@shi-xiaoxiao-iris 已提交
1129 1130
  | -------- | ------------------------------------- | ---- | ------------------------------ |
  | type     | string                                | 是   | 取消注册的设备管理器 ui 状态回调。 |
1131
  | callback | Callback&lt;{&nbsp;param:&nbsp;string}&gt; | 否   | 指示要取消注册的设备管理器 ui 状态,返回UI状态。 |
@
@shi-xiaoxiao-iris 已提交
1132

@
@shi-xiaoxiao-iris 已提交
1133
**示例:**
@
@shi-xiaoxiao-iris 已提交
1134 1135 1136

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1137
    dmInstance.off('uiStateChange');
@
@shi-xiaoxiao-iris 已提交
1138 1139 1140 1141 1142
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

Z
zengyawen 已提交
1143
### on('deviceStateChange')
Z
zengyawen 已提交
1144

1145
on(type: 'deviceStateChange',  callback: Callback&lt;{ action: DeviceStateChangeAction, device: DeviceInfo }&gt;): void
Z
zengyawen 已提交
1146

Z
zengyawen 已提交
1147 1148
注册设备状态回调。

1149 1150
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1151
**参数:**
@
@shi-xiaoxiao-iris 已提交
1152

@
@shi-xiaoxiao-iris 已提交
1153
  | 参数名       | 类型                                     | 必填   | 说明                             |
H
HelloCrease 已提交
1154 1155
  | -------- | ---------------------------------------- | ---- | ------------------------------ |
  | type     | string                                   | 是    | 注册设备状态回调,固定为deviceStateChange。 |
1156
  | callback | Callback&lt;{&nbsp;action:&nbsp;[DeviceStateChangeAction](#devicestatechangeaction),&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 是    | 指示要注册的设备状态回调,返回设备状态和设备信息。      |
Z
zengyawen 已提交
1157

@
@shi-xiaoxiao-iris 已提交
1158
**示例:**
@
@shi-xiaoxiao-iris 已提交
1159

1160
  ```js
1161 1162 1163 1164 1165
  try {
    dmInstance.on('deviceStateChange', (data) => {
      console.info("deviceStateChange on:" + JSON.stringify(data));
    });
  } catch (err) {
1166
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1167
  }
Z
zengyawen 已提交
1168
  ```
Z
zengyawen 已提交
1169

Z
zengyawen 已提交
1170
### off('deviceStateChange')
Z
zengyawen 已提交
1171

1172
off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChangeAction, device: DeviceInfo }&gt;): void
Z
zengyawen 已提交
1173 1174 1175

取消注册设备状态回调。

1176 1177
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1178
**参数:**
@
@shi-xiaoxiao-iris 已提交
1179

@
@shi-xiaoxiao-iris 已提交
1180
  | 参数名       | 类型                                     | 必填   | 说明                          |
H
HelloCrease 已提交
1181 1182
  | -------- | ---------------------------------------- | ---- | --------------------------- |
  | type     | string                                   | 是    | 根据应用程序的包名取消注册设备状态回调。        |
1183
  | callback | Callback&lt;{&nbsp;action:&nbsp;[DeviceStateChangeAction](#devicestatechangeaction),&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 否    | 指示要取消注册的设备状态回调,返回设备状态和设备信息。 |
Z
zengyawen 已提交
1184

@
@shi-xiaoxiao-iris 已提交
1185
**示例:**
@
@shi-xiaoxiao-iris 已提交
1186

1187
  ```js
1188 1189 1190 1191 1192
  try {
    dmInstance.off('deviceStateChange', (data) => {
      console.info('deviceStateChange' + JSON.stringify(data));
    });
  } catch (err) {
1193
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1194
  }
Z
zengyawen 已提交
1195 1196
  ```

1197 1198
### on('deviceFound')

1199
on(type: 'deviceFound', callback: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1200 1201 1202 1203 1204

注册发现设备回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1205
**参数:**
@
@shi-xiaoxiao-iris 已提交
1206

@
@shi-xiaoxiao-iris 已提交
1207
  | 参数名       | 类型                                     | 必填   | 说明                         |
H
HelloCrease 已提交
1208 1209
  | -------- | ---------------------------------------- | ---- | -------------------------- |
  | type     | string                                   | 是    | 注册设备发现回调,以便在发现周边设备时通知应用程序。 |
1210
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 是    | 注册设备发现的回调方法。               |
1211

@
@shi-xiaoxiao-iris 已提交
1212
**示例:**
@
@shi-xiaoxiao-iris 已提交
1213

1214
  ```js
1215 1216 1217 1218 1219
  try {
    dmInstance.on('deviceFound', (data) => {
      console.info("deviceFound:" + JSON.stringify(data));
    });
  } catch (err) {
1220
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1221
  }
1222 1223 1224 1225
  ```

### off('deviceFound')

1226
off(type: 'deviceFound', callback?: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1227 1228 1229 1230 1231

取消注册设备发现回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1232
**参数:**
@
@shi-xiaoxiao-iris 已提交
1233

@
@shi-xiaoxiao-iris 已提交
1234
  | 参数名       | 类型                                     | 必填   | 说明                          |
H
HelloCrease 已提交
1235 1236
  | -------- | ---------------------------------------- | ---- | --------------------------- |
  | type     | string                                   | 是    | 取消注册设备发现回调。                 |
1237
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;device:&nbsp;[DeviceInfo](#deviceinfo)&nbsp;}&gt; | 否    | 指示要取消注册的设备发现回调,返回设备状态和设备信息。 |
1238

@
@shi-xiaoxiao-iris 已提交
1239
**示例:**
@
@shi-xiaoxiao-iris 已提交
1240

1241
  ```js
1242 1243 1244 1245 1246
  try {
    dmInstance.off('deviceFound', (data) => {
      console.info('deviceFound' + JSON.stringify(data));
    });
  } catch (err) {
1247
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1248
  }
1249 1250 1251 1252
  ```

### on('discoverFail')

1253
on(type: 'discoverFail', callback: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1254 1255 1256 1257 1258

注册设备发现失败回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1259
**参数:**
@
@shi-xiaoxiao-iris 已提交
1260

@
@shi-xiaoxiao-iris 已提交
1261
  | 参数名       | 类型                                     | 必填   | 说明                             |
H
HelloCrease 已提交
1262 1263
  | -------- | ---------------------------------------- | ---- | ------------------------------ |
  | type     | string                                   | 是    | 注册设备发现失败回调,以便在发现周边设备失败时通知应用程序。 |
1264
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 是    | 注册设备发现失败的回调方法。                 |
1265

@
@shi-xiaoxiao-iris 已提交
1266
**示例:**
@
@shi-xiaoxiao-iris 已提交
1267

1268
  ```js
1269 1270
  try {
    dmInstance.on('discoverFail', (data) => {
1271
        console.info("discoverFail on:" + JSON.stringify(data));
1272
    });
1273
  } catch (err) {
1274
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1275
  }
1276 1277 1278 1279
  ```

### off('discoverFail')

1280
off(type: 'discoverFail', callback?: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1281 1282 1283 1284 1285

取消注册设备发现失败回调。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1286
**参数:**
@
@shi-xiaoxiao-iris 已提交
1287

@
@shi-xiaoxiao-iris 已提交
1288
  | 参数名       | 类型                                     | 必填   | 说明                |
H
HelloCrease 已提交
1289 1290
  | -------- | ---------------------------------------- | ---- | ----------------- |
  | type     | string                                   | 是    | 取消注册设备发现失败回调。     |
1291
  | callback | Callback&lt;{&nbsp;subscribeId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 否    | 指示要取消注册的设备发现失败回调。 |
1292

@
@shi-xiaoxiao-iris 已提交
1293
**示例:**
@
@shi-xiaoxiao-iris 已提交
1294

1295
  ```js
1296 1297 1298 1299 1300
  try {
    dmInstance.off('discoverFail', (data) => {
      console.info('discoverFail' + JSON.stringify(data));
    });
  } catch (err) {
1301
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1302
  }
1303 1304
  ```

@
@shi-xiaoxiao-iris 已提交
1305
### on('publishSuccess')<sup>9+</sup>
S
summer8999 已提交
1306

1307
on(type: 'publishSuccess', callback: Callback&lt;{ publishId: number }&gt;): void
S
summer8999 已提交
1308 1309 1310 1311 1312

注册发布设备发现回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1313
**参数:**
@
@shi-xiaoxiao-iris 已提交
1314

@
@shi-xiaoxiao-iris 已提交
1315
  | 参数名     | 类型                                 | 必填 | 说明                       |
S
summer8999 已提交
1316
  | -------- | ---------------------------------------- | ---- | -------------------------- |
S
summer8999 已提交
1317
  | type     | string                                   | 是   | 注册发布设备成功回调,以便将发布成功时通知应用程序。 |
1318
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number&nbsp;}&gt;    | 是   | 注册设备发布成功的回调方法。               |
S
summer8999 已提交
1319

@
@shi-xiaoxiao-iris 已提交
1320

@
@shi-xiaoxiao-iris 已提交
1321
**示例:**
@
@shi-xiaoxiao-iris 已提交
1322

S
summer8999 已提交
1323
  ```js
1324 1325 1326 1327 1328
  try {
    dmInstance.on('publishSuccess', (data) => {
      console.info("publishSuccess:" + JSON.stringify(data));
    });
  } catch (err) {
1329
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1330
  }
S
summer8999 已提交
1331 1332
  ```

@
@shi-xiaoxiao-iris 已提交
1333
### off('publishSuccess')<sup>9+</sup>
S
summer8999 已提交
1334

1335
off(type: 'publishSuccess', callback?: Callback&lt;{ publishId: number }&gt;): void
S
summer8999 已提交
1336

S
summer8999 已提交
1337
取消注册设备发布成功回调。
S
summer8999 已提交
1338 1339 1340

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1341
**参数:**
@
@shi-xiaoxiao-iris 已提交
1342

@
@shi-xiaoxiao-iris 已提交
1343
  | 参数名     | 类型                                 | 必填 | 说明                          |
S
summer8999 已提交
1344
  | -------- | ---------------------------------------- | ---- | --------------------------- |
S
summer8999 已提交
1345
  | type     | string                                   | 是   | 取消注册设备发布成功回调。                 |
1346
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number&nbsp;}&gt;    | 否   | 指示要取消注册的设备发布成功回调。 |
S
summer8999 已提交
1347

@
@shi-xiaoxiao-iris 已提交
1348
**示例:**
@
@shi-xiaoxiao-iris 已提交
1349

S
summer8999 已提交
1350
  ```js
1351 1352 1353 1354 1355
  try {
    dmInstance.off('publishSuccess', (data) => {
      console.info('publishSuccess' + JSON.stringify(data));
    });
  } catch (err) {
1356
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1357
  }
S
summer8999 已提交
1358 1359
  ```

@
@shi-xiaoxiao-iris 已提交
1360
### on('publishFail')<sup>9+</sup>
S
summer8999 已提交
1361

1362
on(type: 'publishFail', callback: Callback&lt;{ publishId: number, reason: number }&gt;): void
S
summer8999 已提交
1363 1364 1365 1366 1367

注册设备发布失败回调监听。

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1368
**参数:**
@
@shi-xiaoxiao-iris 已提交
1369

@
@shi-xiaoxiao-iris 已提交
1370
  | 参数名     | 类型                                              | 必填 | 说明                             |
S
summer8999 已提交
1371 1372
  | -------- | ----------------------------------------------------- | ---- | ------------------------------ |
  | type     | string                                                | 是   | 注册设备发布失败回调,以便在发布设备失败时通知应用程序。 |
1373
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 是   | 注册设备发布失败的回调方法。                 |
S
summer8999 已提交
1374

@
@shi-xiaoxiao-iris 已提交
1375
**示例:**
@
@shi-xiaoxiao-iris 已提交
1376

S
summer8999 已提交
1377
  ```js
1378 1379
  try {
    dmInstance.on('publishFail', (data) => {
1380
      console.info("publishFail on:" + JSON.stringify(data));
1381 1382
    });
  } catch (err) {
1383
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1384
  }
S
summer8999 已提交
1385 1386
  ```

@
@shi-xiaoxiao-iris 已提交
1387
### off('publishFail')<sup>9+</sup>
S
summer8999 已提交
1388

1389
off(type: 'publishFail', callback?: Callback&lt;{ publishId: number, reason: number }&gt;): void
S
summer8999 已提交
1390

S
summer8999 已提交
1391
取消注册设备发布失败回调。
S
summer8999 已提交
1392 1393 1394

**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1395
**参数:**
@
@shi-xiaoxiao-iris 已提交
1396

@
@shi-xiaoxiao-iris 已提交
1397
  | 参数名     | 类型                                              | 必填 | 说明                |
S
summer8999 已提交
1398 1399
  | -------- | ----------------------------------------------------- | ---- | ----------------- |
  | type     | string                                                | 是   | 取消注册设备发布失败回调。     |
1400
  | callback | Callback&lt;{&nbsp;publishId:&nbsp;number,&nbsp;reason:&nbsp;number&nbsp;}&gt; | 否   | 指示要取消注册设备发布失败回调。 |
S
summer8999 已提交
1401

@
@shi-xiaoxiao-iris 已提交
1402
**示例:**
@
@shi-xiaoxiao-iris 已提交
1403

S
summer8999 已提交
1404
  ```js
1405 1406 1407 1408 1409
  try {
    dmInstance.off('publishFail', (data) => {
      console.info('publishFail' + JSON.stringify(data));
    });
  } catch (err) {
1410
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1411
  }
S
summer8999 已提交
1412
  ```
1413

Z
zengyawen 已提交
1414 1415 1416
### on('serviceDie')

on(type: 'serviceDie', callback: () =&gt; void): void
Z
zengyawen 已提交
1417 1418 1419

注册设备管理服务死亡监听。

1420 1421
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1422
**参数:**
@
@shi-xiaoxiao-iris 已提交
1423

@
@shi-xiaoxiao-iris 已提交
1424
  | 参数名       | 类型                    | 必填   | 说明                                       |
H
HelloCrease 已提交
1425 1426 1427
  | -------- | ----------------------- | ---- | ---------------------------------------- |
  | type     | string                  | 是    | 注册serviceDie回调,以便在devicemanager服务异常终止时通知应用程序。 |
  | callback | ()&nbsp;=&gt;&nbsp;void | 是    | 注册serviceDie的回调方法。                       |
Z
zengyawen 已提交
1428

@
@shi-xiaoxiao-iris 已提交
1429
**示例:**
@
@shi-xiaoxiao-iris 已提交
1430

1431
  ```js
1432 1433 1434 1435 1436
  try {
    dmInstance.on("serviceDie", () => {
      console.info("serviceDie on");
    });
  } catch (err) {
1437
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1438
  }
Z
zengyawen 已提交
1439
  ```
Z
zengyawen 已提交
1440

Z
zengyawen 已提交
1441 1442 1443 1444 1445
### off('serviceDie')

off(type: 'serviceDie', callback?: () =&gt; void): void

取消注册设备管理服务死亡监听。
Z
zengyawen 已提交
1446

1447 1448
**系统能力**:SystemCapability.DistributedHardware.DeviceManager

@
@shi-xiaoxiao-iris 已提交
1449
**参数:**
@
@shi-xiaoxiao-iris 已提交
1450

@
@shi-xiaoxiao-iris 已提交
1451
  | 参数名       | 类型                    | 必填   | 说明                                       |
H
HelloCrease 已提交
1452 1453 1454
  | -------- | ----------------------- | ---- | ---------------------------------------- |
  | type     | string                  | 是    | 取消注册serviceDie回调,以便在devicemanager服务异常终止时通知应用程序。 |
  | callback | ()&nbsp;=&gt;&nbsp;void | 否    | 取消注册serviceDie的回调方法。                     |
Z
zengyawen 已提交
1455

@
@shi-xiaoxiao-iris 已提交
1456
**示例:**
@
@shi-xiaoxiao-iris 已提交
1457

1458
  ```js
1459 1460 1461 1462 1463
  try {
    dmInstance.off("serviceDie", () => {
      console.info("serviceDie off");
    });
  } catch (err) {
1464
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1465
  }
1466
  ```