js-apis-device-manager.md 50.0 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
| -------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
48
| 401      | Input parameter error.                                          |
@
@shi-xiaoxiao-iris 已提交
49

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

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

67
## DeviceInfo
Z
zengyawen 已提交
68

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

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

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

## DeviceType
Z
zengyawen 已提交
83 84 85

表示设备类型的枚举类。

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

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

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

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

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

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

111
## DeviceStateChangeAction
Z
zengyawen 已提交
112

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

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

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

## SubscribeInfo

发现信息。
Z
zengyawen 已提交
127

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

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


## DiscoverMode 

表示发现模式的枚举。

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

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


## ExchangeMedium 

表示发现类型的枚举。

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

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

## ExchangeFreq 

表示发现频率的枚举。

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

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


## SubscribeCap 

表示发现能力的枚举。

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

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


## AuthParam

认证参数。

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

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

## AuthInfo

认证信息。

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

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

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

发布设备参数

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

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

## DeviceManager
Z
zengyawen 已提交
229 230 231

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

282
  ```js
283 284 285
  try {
    var deviceInfoList = dmInstance.getTrustedDeviceListSync();
  } catch (err) {
286
    console.error("getTrustedDeviceListSync errCode:" + err.code + ",errMessage:" + err.message);
287
  }
Z
zengyawen 已提交
288
  ```
Z
zengyawen 已提交
289

290 291 292 293 294 295 296 297
### getTrustedDeviceList<sup>8+</sup>

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

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

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

@
@shi-xiaoxiao-iris 已提交
298
**参数:**
@
@shi-xiaoxiao-iris 已提交
299

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

@
@shi-xiaoxiao-iris 已提交
304
**错误码:**
@
@shi-xiaoxiao-iris 已提交
305

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

@
@shi-xiaoxiao-iris 已提交
308
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
309
| -------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
310
| 401      | Input parameter error.                                          |
@
@shi-xiaoxiao-iris 已提交
311

@
@shi-xiaoxiao-iris 已提交
312
**示例:**
@
@shi-xiaoxiao-iris 已提交
313

314
  ```js
315 316 317
  try {
    dmInstance.getTrustedDeviceList((err, data) => {
      if (err) {
318
        console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
319 320
        return;
      }
321
      console.log('get trusted device info: ' + JSON.stringify(data));
322
    });
323
  } catch (err) {
324
    console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
325
  }
326 327 328 329 330 331 332 333 334 335
  ```

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
336
**返回值:**
@
@shi-xiaoxiao-iris 已提交
337

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

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

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

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

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

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

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

getLocalDeviceInfoSync(): [DeviceInfo](#deviceinfo)

同步获取本地设备信息。

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

@
@shi-xiaoxiao-iris 已提交
368
**返回值:**
@
@shi-xiaoxiao-iris 已提交
369

370 371 372
  | 名称                      | 说明              |
  | ------------------------- | ---------------- |
  | [DeviceInfo](#deviceinfo) | 返回本地设备列表。 |
373

@
@shi-xiaoxiao-iris 已提交
374
**错误码:**
@
@shi-xiaoxiao-iris 已提交
375

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

@
@shi-xiaoxiao-iris 已提交
378
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
379 380
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
381

@
@shi-xiaoxiao-iris 已提交
382
**示例:**
@
@shi-xiaoxiao-iris 已提交
383

384
  ```js
385 386 387
  try {
    var deviceInfo = dmInstance.getLocalDeviceInfoSync();
  } catch (err) {
388
    console.error("getLocalDeviceInfoSync errCode:" + err.code + ",errMessage:" + err.message);
389
  }
390 391 392 393 394 395 396 397 398 399
  ```

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
400
**参数:**
@
@shi-xiaoxiao-iris 已提交
401

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

@
@shi-xiaoxiao-iris 已提交
406
**错误码:**
@
@shi-xiaoxiao-iris 已提交
407

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

@
@shi-xiaoxiao-iris 已提交
410
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
411
| -------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
412
| 401      | Input parameter error.                                          |
@
@shi-xiaoxiao-iris 已提交
413

@
@shi-xiaoxiao-iris 已提交
414
**示例:**
@
@shi-xiaoxiao-iris 已提交
415

416
  ```js
417
  try {
418
    dmInstance.getLocalDeviceInfo((err, data) => {
419
    if (err) {
420
      console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
421
      return;
422
    }
423 424 425
      console.log('get local device info: ' + JSON.stringify(data));
    });
  } catch (err) {
426
    console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
427
  }
428 429 430 431 432 433 434 435 436 437
  ```

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
438 439
**返回值:**

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

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

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

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

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

454
  ```js
455 456 457
  dmInstance.getLocalDeviceInfo().then((data) => {
    console.log('get local device info: ' + JSON.stringify(data));
  }).catch((err) => {
458
    console.error("getLocalDeviceInfo errCode:" + err.code + ",errMessage:" + err.message);
459
  });
460 461
  ```

S
summer8999 已提交
462 463
### getDeviceInfo<sup>10+</sup>

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

S
summer8999 已提交
466
通过指定设备的网络标识获取该设备的信息。使用callback异步回调。
S
summer8999 已提交
467 468 469 470 471 472 473

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

**参数:**

  | 参数名       | 类型                                     | 必填   | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
S
summer8999 已提交
474
  | networkId| string                                   | 是   | 设备的网络标识。 |
S
summer8999 已提交
475 476 477 478 479 480 481 482
  | callback | AsyncCallback&lt;[DeviceInfo](#deviceinfo)&gt; | 是    | 获取指定设备信息。 |

**错误码:**

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

| 错误码ID | 错误信息                                                        |
| -------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
483
| 401      | Input parameter error.                                          |
S
summer8999 已提交
484 485 486 487 488

**示例:**

  ```js
  try {
W
wangxuanxuan 已提交
489 490
    // 设备网络标识,可以从可信设备列表中获取
    let networkId = "xxxxxxx"
S
summer8999 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504
    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 已提交
505
getDeviceInfo(networkId: string): Promise&lt;DeviceInfo&gt;
S
summer8999 已提交
506

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

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

S
summer8999 已提交
511 512 513 514 515 516
**参数:**

  | 参数名   | 类型                                     | 必填 | 说明        |
  | -------- | ---------------------------------------- | ---- | --------- |
  | networkId| string                                   | 是   | 设备的网络标识。 |
  
S
summer8999 已提交
517 518 519 520 521 522 523 524 525 526 527 528
**返回值:**

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

**错误码:**

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

| 错误码ID | 错误信息                                                        |
| ------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
529
| 401     | Input parameter error.                                          |
S
summer8999 已提交
530 531 532 533

**示例:**

  ```js
W
wangxuanxuan 已提交
534 535
  // 设备网络标识,可以从可信设备列表中获取
  let networkId = "xxxxxxx"
S
summer8999 已提交
536 537 538 539 540 541 542
  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 已提交
543
### startDeviceDiscovery<sup>8+</sup>
544 545 546

startDeviceDiscovery(subscribeInfo: SubscribeInfo): void

W
wangxuanxuan 已提交
547
发现周边设备。发现状态持续两分钟,超过两分钟,会停止发现,最大发现数量99个。
548 549 550

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

@
@shi-xiaoxiao-iris 已提交
551
**参数:**
@
@shi-xiaoxiao-iris 已提交
552

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

@
@shi-xiaoxiao-iris 已提交
557
**错误码:**
@
@shi-xiaoxiao-iris 已提交
558

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

@
@shi-xiaoxiao-iris 已提交
561
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
562 563 564 565
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
566
**示例:**
@
@shi-xiaoxiao-iris 已提交
567

568
  ```js
569
  // 生成发现标识,随机数确保每次调用发现接口的标识不一致
570 571 572
  var subscribeId = Math.floor(Math.random() * 10000 + 1000);
  var subscribeInfo = {
      "subscribeId": subscribeId,
573 574 575
      "mode": 0xAA, // 主动模式
      "medium": 0,  // 自动发现类型,同时支持多种发现类型
      "freq": 2,    // 高频率
576 577 578 579
      "isSameAccount": false,
      "isWakeRemote": false,
      "capability": 1
  };
580 581 582
  try {
    dmInstance.startDeviceDiscovery(subscribeInfo); // 当有设备发现时,通过deviceFound回调通知给应用程序
  } catch (err) {
583
    console.error("startDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
584
  }
585 586
  ```

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
595
**参数:**
@
@shi-xiaoxiao-iris 已提交
596

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

@
@shi-xiaoxiao-iris 已提交
602
**错误码:**
@
@shi-xiaoxiao-iris 已提交
603

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

@
@shi-xiaoxiao-iris 已提交
606
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
607 608 609 610
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600104 | Discovery invalid.                                              |

@
@shi-xiaoxiao-iris 已提交
611
**示例:**
@
@shi-xiaoxiao-iris 已提交
612

S
summer8999 已提交
613
  ```js
614
  // 生成发现标识,随机数确保每次调用发现接口的标识不一致
S
summer8999 已提交
615 616 617
  var subscribeId = Math.floor(Math.random() * 10000 + 1000);
  var subscribeInfo = {
      "subscribeId": subscribeId,
618 619 620
      "mode": 0xAA, // 主动模式
      "medium": 0,  // 自动发现类型,同时支持多种发现类型
      "freq": 2,    // 高频率
S
summer8999 已提交
621 622 623 624 625
      "isSameAccount": false,
      "isWakeRemote": false,
      "capability": 1
  };
  var filterOptions = {
S
summer8999 已提交
626
    "filter_op": "OR", // 可选, 默认"OR"
S
summer8999 已提交
627 628 629
    "filters": [
        {
            "type": "range",
S
summer8999 已提交
630
            "value": 50 // 需过滤发现设备的距离,单位(cm)
S
summer8999 已提交
631 632
        }
    ]
S
summer8999 已提交
633
  };
634 635 636
  try {
    dmInstance.startDeviceDiscovery(subscribeInfo, JSON.stringify(filterOptions)); // 当有设备发现时,通过deviceFound回调通知给应用程序
  } catch (err) {
637
    console.error("startDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
638
  }
S
summer8999 已提交
639
  ```
@
@shi-xiaoxiao-iris 已提交
640

641 642 643 644 645 646 647 648
### stopDeviceDiscovery

stopDeviceDiscovery(subscribeId: number): void

停止发现周边设备。

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

@
@shi-xiaoxiao-iris 已提交
649
**参数:**
@
@shi-xiaoxiao-iris 已提交
650

@
@shi-xiaoxiao-iris 已提交
651
  | 参数名          | 类型   | 必填   | 说明    |
H
HelloCrease 已提交
652 653
  | ----------- | ------ | ---- | ----- |
  | subscribeId | number | 是    | 发现标识。 |
654

@
@shi-xiaoxiao-iris 已提交
655
**错误码:**
@
@shi-xiaoxiao-iris 已提交
656

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

@
@shi-xiaoxiao-iris 已提交
659
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
660 661
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
662

@
@shi-xiaoxiao-iris 已提交
663
**示例:**
@
@shi-xiaoxiao-iris 已提交
664

665
  ```js
666
  try {
667 668
    // stopDeviceDiscovery和startDeviceDiscovery需配对使用,入参需要和startDeviceDiscovery接口传入的subscribeId值相等
    var subscribeId = 12345;
669 670
    dmInstance.stopDeviceDiscovery(subscribeId);
  } catch (err) {
671
    console.error("stopDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
672
  }
673 674
  ```

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

S
summer8999 已提交
677
publishDeviceDiscovery(publishInfo: PublishInfo): void
S
summer8999 已提交
678

W
wangxuanxuan 已提交
679
发布设备发现。发布状态持续两分钟,超过两分钟会停止发布。
S
summer8999 已提交
680 681 682

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

@
@shi-xiaoxiao-iris 已提交
683
**参数:**
@
@shi-xiaoxiao-iris 已提交
684

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

@
@shi-xiaoxiao-iris 已提交
689
**错误码:**
@
@shi-xiaoxiao-iris 已提交
690

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

@
@shi-xiaoxiao-iris 已提交
693
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
694 695 696
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
| 11600105 | Publish invalid.                                                |
@
@shi-xiaoxiao-iris 已提交
697

@
@shi-xiaoxiao-iris 已提交
698
**示例:**
@
@shi-xiaoxiao-iris 已提交
699

S
summer8999 已提交
700
  ```js
701
  // 生成发布标识,随机数确保每次调用发布接口的标识不一致
S
summer8999 已提交
702
  var publishId = Math.floor(Math.random() * 10000 + 1000);
S
summer8999 已提交
703
  var publishInfo = {
S
summer8999 已提交
704
      "publishId": publishId,
705 706
      "mode": 0xAA, // 主动模式
      "freq": 2,    // 高频率
707
      "ranging": true  // 支持发现时测距
S
summer8999 已提交
708
  };
709 710 711
  try {
    dmInstance.publishDeviceDiscovery(publishInfo); // 当有发布结果时,通过回调通知给应用程序
  } catch (err) {
712
    console.error("publishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
713
  }
S
summer8999 已提交
714
  ```
715

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

S
summer8999 已提交
718
unPublishDeviceDiscovery(publishId: number): void
S
summer8999 已提交
719 720 721 722 723

停止发布设备发现。

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

@
@shi-xiaoxiao-iris 已提交
724
**参数:**
@
@shi-xiaoxiao-iris 已提交
725

@
@shi-xiaoxiao-iris 已提交
726
  | 参数名        | 类型 | 必填 | 说明  |
S
summer8999 已提交
727 728
  | ----------- | -------- | ---- | ----- |
  | publishId   | number   | 是   | 发布标识。 |
S
summer8999 已提交
729

@
@shi-xiaoxiao-iris 已提交
730
**错误码:**
@
@shi-xiaoxiao-iris 已提交
731

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

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

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

S
summer8999 已提交
740
  ```js
741
  try {
742 743
    // unPublishDeviceDiscovery和publishDeviceDiscovery配对使用,入参需要和publishDeviceDiscovery接口传入的publishId值相等
    var publishId = 12345;
744
    dmInstance.unPublishDeviceDiscovery(publishId);
745
  } catch (err) {
746
    console.error("unPublishDeviceDiscovery errCode:" + err.code + ",errMessage:" + err.message);
747
  }
S
summer8999 已提交
748 749
  ```

750 751
### authenticateDevice

752
authenticateDevice(deviceInfo: DeviceInfo, authParam: AuthParam, callback: AsyncCallback&lt;{deviceId: string, pinToken ?: number}&gt;): void
753 754 755 756 757

认证设备。

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

@
@shi-xiaoxiao-iris 已提交
758
**参数:**
@
@shi-xiaoxiao-iris 已提交
759

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

@
@shi-xiaoxiao-iris 已提交
766
**错误码:**
@
@shi-xiaoxiao-iris 已提交
767

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

@
@shi-xiaoxiao-iris 已提交
770
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
771
| -------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
772
| 401      | Input parameter error.                                          |
@
@shi-xiaoxiao-iris 已提交
773

@
@shi-xiaoxiao-iris 已提交
774
**示例:**
@
@shi-xiaoxiao-iris 已提交
775

776
  ```js
777
  // 认证的设备信息,可以从发现的结果中获取
778 779 780
  var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
781 782 783
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
784
  };
785 786 787 788 789
  let extraInfo = {
          'targetPkgName': 'ohos.samples.xxx',
          'appName': 'xxx',
          'appDescription': 'xxx',
          'business': '0'
790
  }
791
  let authParam = {
792 793
      'authType': 1,// 认证类型: 1 - 无帐号PIN码认证
      'extraInfo': extraInfo
794
  }
795 796
  try {
    dmInstance.authenticateDevice(deviceInfo, authParam, (err, data) => {
797
      if (err) {
798
          console.error("authenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
799 800
          return;
      }
@
@shi-xiaoxiao-iris 已提交
801 802
      console.info("authenticateDevice result:" + JSON.stringify(data));
      let token = data.pinToken;
803 804
    });
  } catch (err) {
805
    console.error("authenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
806
  }
807 808 809 810 811 812 813 814 815 816
  ```

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

unAuthenticateDevice(deviceInfo: DeviceInfo): void

解除认证设备。

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

@
@shi-xiaoxiao-iris 已提交
817
**参数:**
@
@shi-xiaoxiao-iris 已提交
818

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

@
@shi-xiaoxiao-iris 已提交
823
**错误码:**
@
@shi-xiaoxiao-iris 已提交
824

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

@
@shi-xiaoxiao-iris 已提交
827
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
828 829
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
830

@
@shi-xiaoxiao-iris 已提交
831
**示例:**
@
@shi-xiaoxiao-iris 已提交
832

833
  ```js
834
  try {
835 836 837 838 839 840 841
    var deviceInfo ={
      "deviceId": "XXXXXXXX",
      "deviceName": "",
      "deviceType": 0x0E,
      "networkId" : "xxxxxxx",
      "range" : 0
    };
842 843
    dmInstance.unAuthenticateDevice(deviceInfo);
  } catch (err) {
844
    console.error("unAuthenticateDevice errCode:" + err.code + ",errMessage:" + err.message);
845
  }
846 847 848 849
  ```

### verifyAuthInfo

850
verifyAuthInfo(authInfo: AuthInfo, callback: AsyncCallback&lt;{deviceId: string, level: number}&gt;): void
851 852 853 854 855

验证认证信息。

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

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

@
@shi-xiaoxiao-iris 已提交
858
  | 参数名       | 类型                                     | 必填   | 说明      |
H
HelloCrease 已提交
859 860
  | -------- | ---------------------------------------- | ---- | ------- |
  | authInfo | [AuthInfo](#authinfo)                    | 是    | 认证信息。   |
861
  | callback | AsyncCallback&lt;{deviceId:&nbsp;string,&nbsp;level:&nbsp;number}&gt; | 是    | 验证结果回调。 |
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
| -------- | --------------------------------------------------------------- |
W
wuxiaodong02 已提交
869
| 401      | Input parameter error.                                 |
@
@shi-xiaoxiao-iris 已提交
870

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

873 874 875
  ```js
  let authInfo = {
    "authType": 1,
876
    "token": 123456,
877 878
    "extraInfo": {}
  }
879 880
  try {
    dmInstance.verifyAuthInfo(authInfo, (err, data) => {
881
    if (err) {
882
        console.error("verifyAuthInfo errCode:" + err.code + ",errMessage:" + err.message);
883 884
        return;
    }
@
@shi-xiaoxiao-iris 已提交
885
    console.info("verifyAuthInfo result:" + JSON.stringify(data));
886 887
    });
  } catch (err) {
888
    console.error("verifyAuthInfo errCode:" + err.code + ",errMessage:" + err.message);
889
  }
890 891
  ```

@
@shi-xiaoxiao-iris 已提交
892
### setUserOperation<sup>9+</sup>
@
@shi-xiaoxiao-iris 已提交
893 894 895 896 897 898 899

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

设置用户ui操作行为。

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

@
@shi-xiaoxiao-iris 已提交
900
**参数:**
@
@shi-xiaoxiao-iris 已提交
901

@
@shi-xiaoxiao-iris 已提交
902
  | 参数名       | 类型            | 必填  | 说明                |
903 904 905
  | ------------- | --------------- | ---- | ------------------- |
  | operateAction | number          | 是    | 用户操作动作。       |
  | params        | string          | 是    | 表示用户的输入参数。 |
@
@shi-xiaoxiao-iris 已提交
906

@
@shi-xiaoxiao-iris 已提交
907
**示例:**
@
@shi-xiaoxiao-iris 已提交
908 909

  ```js
@
@shi-xiaoxiao-iris 已提交
910 911 912 913 914 915 916 917 918 919
 try {
    /*
      operateAction = 0 - 允许授权
      operateAction = 1 - 取消授权
      operateAction = 2 - 授权框用户操作超时
      operateAction = 3 - 取消pin码框展示
      operateAction = 4 - 取消pin码输入框展示
      operateAction = 5 - pin码输入框确定操作
    */
    let operation = 0;
920
    dmInstance.setUserOperation(operation, "extra")
@
@shi-xiaoxiao-iris 已提交
921 922
    } catch (err) {
      console.error("setUserOperation errCode:" + err.code + ",errMessage:" + err.message);
@
@shi-xiaoxiao-iris 已提交
923 924 925
  }
  ```

W
wuqi0105 已提交
926
### requestCredentialRegisterInfo<sup>10+</sup>
W
wuqi0105 已提交
927

W
wuqi0105 已提交
928
requestCredentialRegisterInfo(requestInfo: string, callback: AsyncCallback<{registerInfo: string}>): void;
W
wuqi0105 已提交
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948

获取凭据的注册信息。

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

**参数:**

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

**示例:**

  ```js
  let credentialInfo = {
    "version" : "1.2.3",
    "userId" : "123"
  }
  try {
W
wangxuanxuan 已提交
949
    dmInstance.requestCredentialRegisterInfo(credentialInfo, (data) => {
W
wuqi0105 已提交
950
      if (data) {
W
wuqi0105 已提交
951
          console.info("requestCredentialRegisterInfo result:" + JSON.stringify(data));
W
wuqi0105 已提交
952
      } else {
W
wangxuanxuan 已提交
953
          console.info("requestCredentialRegisterInfo result: data is null");
W
wuqi0105 已提交
954 955 956
      }
    });
  } catch (err) {
W
wuqi0105 已提交
957
    console.error("requestCredentialRegisterInfo err:" + err.code + "," + err.message);
W
wuqi0105 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999
  }
  ```

### 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 已提交
1000
    dmInstance.importCredential(credentialInfo, (data) => {
W
wuqi0105 已提交
1001 1002 1003
      if (data) {
          console.info("importCredential result:" + JSON.stringify(data));
      } else {
W
wangxuanxuan 已提交
1004
          console.info("importCredential result: data is null");
W
wuqi0105 已提交
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
      }
    });
  } 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 已提交
1036
    dmInstance.deleteCredential(queryInfo, (data) => {
W
wuqi0105 已提交
1037 1038 1039
      if (data) {
          console.info("deleteCredential result:" + JSON.stringify(data));
      } else {
W
wangxuanxuan 已提交
1040
          console.info("deleteCredential result: data is null");
W
wuqi0105 已提交
1041 1042 1043 1044 1045 1046 1047
      }
    });
  } catch (err) {
    console.error("deleteCredential err:" + err.code + "," + err.message);
  }
  ```

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

1050
on(type: 'uiStateChange', callback: Callback&lt;{ param: string}&gt;): void;
@
@shi-xiaoxiao-iris 已提交
1051 1052 1053 1054 1055

ui状态变更回调。

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

@
@shi-xiaoxiao-iris 已提交
1056
**参数:**
@
@shi-xiaoxiao-iris 已提交
1057

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

@
@shi-xiaoxiao-iris 已提交
1063
**示例:**
@
@shi-xiaoxiao-iris 已提交
1064 1065 1066

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1067
    dmInstance.on('uiStateChange', (data) => {
@
@shi-xiaoxiao-iris 已提交
1068 1069
    console.log("uiStateChange executed, dialog closed" + JSON.stringify(data))
    var tmpStr = JSON.parse(data.param)
1070 1071
    var isShow = tmpStr.verifyFailed
    console.log("uiStateChange executed, dialog closed" + isShow)
@
@shi-xiaoxiao-iris 已提交
1072 1073 1074 1075 1076 1077
  });
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

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

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

1082 1083
取消ui状态变更回调。

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

@
@shi-xiaoxiao-iris 已提交
1086
**参数:**
@
@shi-xiaoxiao-iris 已提交
1087

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

@
@shi-xiaoxiao-iris 已提交
1093
**示例:**
@
@shi-xiaoxiao-iris 已提交
1094 1095 1096

  ```js
  try {
@
@shi-xiaoxiao-iris 已提交
1097
    dmInstance.off('uiStateChange');
@
@shi-xiaoxiao-iris 已提交
1098 1099 1100 1101 1102
  } catch (err) {
    console.error("uiStateChange errCode:" + err.code + ",errMessage:" + err.message);
  }
  ```

Z
zengyawen 已提交
1103
### on('deviceStateChange')
Z
zengyawen 已提交
1104

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

Z
zengyawen 已提交
1107 1108
注册设备状态回调。

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

@
@shi-xiaoxiao-iris 已提交
1111
**参数:**
@
@shi-xiaoxiao-iris 已提交
1112

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

@
@shi-xiaoxiao-iris 已提交
1118
**示例:**
@
@shi-xiaoxiao-iris 已提交
1119

1120
  ```js
1121 1122 1123 1124 1125
  try {
    dmInstance.on('deviceStateChange', (data) => {
      console.info("deviceStateChange on:" + JSON.stringify(data));
    });
  } catch (err) {
1126
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1127
  }
Z
zengyawen 已提交
1128
  ```
Z
zengyawen 已提交
1129

Z
zengyawen 已提交
1130
### off('deviceStateChange')
Z
zengyawen 已提交
1131

1132
off(type: 'deviceStateChange', callback?: Callback&lt;{ action: DeviceStateChangeAction, device: DeviceInfo }&gt;): void
Z
zengyawen 已提交
1133 1134 1135

取消注册设备状态回调。

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

@
@shi-xiaoxiao-iris 已提交
1138
**参数:**
@
@shi-xiaoxiao-iris 已提交
1139

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

@
@shi-xiaoxiao-iris 已提交
1145
**示例:**
@
@shi-xiaoxiao-iris 已提交
1146

1147
  ```js
1148 1149 1150 1151 1152
  try {
    dmInstance.off('deviceStateChange', (data) => {
      console.info('deviceStateChange' + JSON.stringify(data));
    });
  } catch (err) {
1153
    console.error("deviceStateChange errCode:" + err.code + ",errMessage:" + err.message);
1154
  }
Z
zengyawen 已提交
1155 1156
  ```

1157 1158
### on('deviceFound')

1159
on(type: 'deviceFound', callback: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1160 1161 1162 1163 1164

注册发现设备回调监听。

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

@
@shi-xiaoxiao-iris 已提交
1165
**参数:**
@
@shi-xiaoxiao-iris 已提交
1166

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

@
@shi-xiaoxiao-iris 已提交
1172
**示例:**
@
@shi-xiaoxiao-iris 已提交
1173

1174
  ```js
1175 1176 1177 1178 1179
  try {
    dmInstance.on('deviceFound', (data) => {
      console.info("deviceFound:" + JSON.stringify(data));
    });
  } catch (err) {
1180
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1181
  }
1182 1183 1184 1185
  ```

### off('deviceFound')

1186
off(type: 'deviceFound', callback?: Callback&lt;{ subscribeId: number, device: DeviceInfo }&gt;): void
1187 1188 1189 1190 1191

取消注册设备发现回调。

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

@
@shi-xiaoxiao-iris 已提交
1192
**参数:**
@
@shi-xiaoxiao-iris 已提交
1193

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

@
@shi-xiaoxiao-iris 已提交
1199
**示例:**
@
@shi-xiaoxiao-iris 已提交
1200

1201
  ```js
1202 1203 1204 1205 1206
  try {
    dmInstance.off('deviceFound', (data) => {
      console.info('deviceFound' + JSON.stringify(data));
    });
  } catch (err) {
1207
    console.error("deviceFound errCode:" + err.code + ",errMessage:" + err.message);
1208
  }
1209 1210 1211 1212
  ```

### on('discoverFail')

1213
on(type: 'discoverFail', callback: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1214 1215 1216 1217 1218

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

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

@
@shi-xiaoxiao-iris 已提交
1219
**参数:**
@
@shi-xiaoxiao-iris 已提交
1220

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

@
@shi-xiaoxiao-iris 已提交
1226
**示例:**
@
@shi-xiaoxiao-iris 已提交
1227

1228
  ```js
1229 1230
  try {
    dmInstance.on('discoverFail', (data) => {
1231
        console.info("discoverFail on:" + JSON.stringify(data));
1232
    });
1233
  } catch (err) {
1234
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1235
  }
1236 1237 1238 1239
  ```

### off('discoverFail')

1240
off(type: 'discoverFail', callback?: Callback&lt;{ subscribeId: number, reason: number }&gt;): void
1241 1242 1243 1244 1245

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

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

@
@shi-xiaoxiao-iris 已提交
1246
**参数:**
@
@shi-xiaoxiao-iris 已提交
1247

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

@
@shi-xiaoxiao-iris 已提交
1253
**示例:**
@
@shi-xiaoxiao-iris 已提交
1254

1255
  ```js
1256 1257 1258 1259 1260
  try {
    dmInstance.off('discoverFail', (data) => {
      console.info('discoverFail' + JSON.stringify(data));
    });
  } catch (err) {
1261
    console.error("discoverFail errCode:" + err.code + ",errMessage:" + err.message);
1262
  }
1263 1264
  ```

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

1267
on(type: 'publishSuccess', callback: Callback&lt;{ publishId: number }&gt;): void
S
summer8999 已提交
1268 1269 1270 1271 1272

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

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

@
@shi-xiaoxiao-iris 已提交
1273
**参数:**
@
@shi-xiaoxiao-iris 已提交
1274

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

@
@shi-xiaoxiao-iris 已提交
1280

@
@shi-xiaoxiao-iris 已提交
1281
**示例:**
@
@shi-xiaoxiao-iris 已提交
1282

S
summer8999 已提交
1283
  ```js
1284 1285 1286 1287 1288
  try {
    dmInstance.on('publishSuccess', (data) => {
      console.info("publishSuccess:" + JSON.stringify(data));
    });
  } catch (err) {
1289
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1290
  }
S
summer8999 已提交
1291 1292
  ```

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

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

S
summer8999 已提交
1297
取消注册设备发布成功回调。
S
summer8999 已提交
1298 1299 1300

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

@
@shi-xiaoxiao-iris 已提交
1301
**参数:**
@
@shi-xiaoxiao-iris 已提交
1302

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

@
@shi-xiaoxiao-iris 已提交
1308
**示例:**
@
@shi-xiaoxiao-iris 已提交
1309

S
summer8999 已提交
1310
  ```js
1311 1312 1313 1314 1315
  try {
    dmInstance.off('publishSuccess', (data) => {
      console.info('publishSuccess' + JSON.stringify(data));
    });
  } catch (err) {
1316
    console.error("publishSuccess errCode:" + err.code + ",errMessage:" + err.message);
1317
  }
S
summer8999 已提交
1318 1319
  ```

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

1322
on(type: 'publishFail', callback: Callback&lt;{ publishId: number, reason: number }&gt;): void
S
summer8999 已提交
1323 1324 1325 1326 1327

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

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

@
@shi-xiaoxiao-iris 已提交
1328
**参数:**
@
@shi-xiaoxiao-iris 已提交
1329

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

@
@shi-xiaoxiao-iris 已提交
1335
**示例:**
@
@shi-xiaoxiao-iris 已提交
1336

S
summer8999 已提交
1337
  ```js
1338 1339
  try {
    dmInstance.on('publishFail', (data) => {
1340
      console.info("publishFail on:" + JSON.stringify(data));
1341 1342
    });
  } catch (err) {
1343
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1344
  }
S
summer8999 已提交
1345 1346
  ```

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

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

S
summer8999 已提交
1351
取消注册设备发布失败回调。
S
summer8999 已提交
1352 1353 1354

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

@
@shi-xiaoxiao-iris 已提交
1355
**参数:**
@
@shi-xiaoxiao-iris 已提交
1356

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

@
@shi-xiaoxiao-iris 已提交
1362
**示例:**
@
@shi-xiaoxiao-iris 已提交
1363

S
summer8999 已提交
1364
  ```js
1365 1366 1367 1368 1369
  try {
    dmInstance.off('publishFail', (data) => {
      console.info('publishFail' + JSON.stringify(data));
    });
  } catch (err) {
1370
    console.error("publishFail errCode:" + err.code + ",errMessage:" + err.message);
1371
  }
S
summer8999 已提交
1372
  ```
1373

Z
zengyawen 已提交
1374 1375 1376
### on('serviceDie')

on(type: 'serviceDie', callback: () =&gt; void): void
Z
zengyawen 已提交
1377 1378 1379

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

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

@
@shi-xiaoxiao-iris 已提交
1382
**参数:**
@
@shi-xiaoxiao-iris 已提交
1383

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

@
@shi-xiaoxiao-iris 已提交
1389
**示例:**
@
@shi-xiaoxiao-iris 已提交
1390

1391
  ```js
1392 1393 1394 1395 1396
  try {
    dmInstance.on("serviceDie", () => {
      console.info("serviceDie on");
    });
  } catch (err) {
1397
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1398
  }
Z
zengyawen 已提交
1399
  ```
Z
zengyawen 已提交
1400

Z
zengyawen 已提交
1401 1402 1403 1404 1405
### off('serviceDie')

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

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

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

@
@shi-xiaoxiao-iris 已提交
1409
**参数:**
@
@shi-xiaoxiao-iris 已提交
1410

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

@
@shi-xiaoxiao-iris 已提交
1416
**示例:**
@
@shi-xiaoxiao-iris 已提交
1417

1418
  ```js
1419 1420 1421 1422 1423
  try {
    dmInstance.off("serviceDie", () => {
      console.info("serviceDie off");
    });
  } catch (err) {
1424
    console.error("serviceDie errCode:" + err.code + ",errMessage:" + err.message);
1425
  }
1426
  ```