js-apis-device-manager.md 50.2 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
  ```
Z
zengyawen 已提交
290

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

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

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

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

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
309
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
310 311
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
312

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

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

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

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

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

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

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

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

@
@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
  dmInstance.getTrustedDeviceList().then((data) => {
    console.log('get trusted device info: ' + JSON.stringify(data));
    }).catch((err) => {
357
      console.error("getTrustedDeviceList errCode:" + err.code + ",errMessage:" + err.message);
358
  });
359 360 361 362 363 364 365 366 367 368
  ```

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

getLocalDeviceInfoSync(): [DeviceInfo](#deviceinfo)

同步获取本地设备信息。

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
411
| 错误码ID | 错误信息                                                        |
@
@shi-xiaoxiao-iris 已提交
412 413
| -------- | --------------------------------------------------------------- |
| 11600101 | Failed to execute the function.                                 |
@
@shi-xiaoxiao-iris 已提交
414

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

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

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

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

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

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

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

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

@
@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 452
| ------- | --------------------------------------------------------------- |
| 11600101| Failed to execute the function.                                 |

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

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

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

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

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

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

**参数:**

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

**错误码:**

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

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

**示例:**

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

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

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

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

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

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

**错误码:**

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

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

**示例:**

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

startDeviceDiscovery(subscribeInfo: SubscribeInfo): void

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

stopDeviceDiscovery(subscribeId: number): void

停止发现周边设备。

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

停止发布设备发现。

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

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

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

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

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

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

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

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

751 752
### authenticateDevice

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

认证设备。

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

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

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

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

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

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

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

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

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

unAuthenticateDevice(deviceInfo: DeviceInfo): void

解除认证设备。

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

@
@shi-xiaoxiao-iris 已提交
819
**参数:**
@
@shi-xiaoxiao-iris 已提交
820

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

@
@shi-xiaoxiao-iris 已提交
825
**错误码:**
@
@shi-xiaoxiao-iris 已提交
826

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

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

@
@shi-xiaoxiao-iris 已提交
833
**示例:**
@
@shi-xiaoxiao-iris 已提交
834

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

### verifyAuthInfo

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

验证认证信息。

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

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

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

@
@shi-xiaoxiao-iris 已提交
865
**错误码:**
@
@shi-xiaoxiao-iris 已提交
866

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

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

@
@shi-xiaoxiao-iris 已提交
873
**示例:**
@
@shi-xiaoxiao-iris 已提交
874

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

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

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

设置用户ui操作行为。

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

@
@shi-xiaoxiao-iris 已提交
902
**参数:**
@
@shi-xiaoxiao-iris 已提交
903

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

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

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

W
wuqi0105 已提交
928
### requestCredentialRegisterInfo<sup>10+</sup>
W
wuqi0105 已提交
929

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

获取凭据的注册信息。

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

**参数:**

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

**示例:**

  ```js
  let credentialInfo = {
    "version" : "1.2.3",
    "userId" : "123"
  }
  try {
W
wangxuanxuan 已提交
951
    dmInstance.requestCredentialRegisterInfo(credentialInfo, (data) => {
W
wuqi0105 已提交
952
      if (data) {
W
wuqi0105 已提交
953
          console.info("requestCredentialRegisterInfo result:" + JSON.stringify(data));
W
wuqi0105 已提交
954
      } else {
W
wangxuanxuan 已提交
955
          console.info("requestCredentialRegisterInfo result: data is null");
W
wuqi0105 已提交
956 957 958
      }
    });
  } catch (err) {
W
wuqi0105 已提交
959
    console.error("requestCredentialRegisterInfo err:" + err.code + "," + err.message);
W
wuqi0105 已提交
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 1000 1001
  }
  ```

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

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

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

ui状态变更回调。

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

@
@shi-xiaoxiao-iris 已提交
1058
**参数:**
@
@shi-xiaoxiao-iris 已提交
1059

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

@
@shi-xiaoxiao-iris 已提交
1065
**示例:**
@
@shi-xiaoxiao-iris 已提交
1066 1067 1068

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

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

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

1084 1085
取消ui状态变更回调。

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

@
@shi-xiaoxiao-iris 已提交
1088
**参数:**
@
@shi-xiaoxiao-iris 已提交
1089

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

@
@shi-xiaoxiao-iris 已提交
1095
**示例:**
@
@shi-xiaoxiao-iris 已提交
1096 1097 1098

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

Z
zengyawen 已提交
1105
### on('deviceStateChange')
Z
zengyawen 已提交
1106

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

Z
zengyawen 已提交
1109 1110
注册设备状态回调。

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

@
@shi-xiaoxiao-iris 已提交
1113
**参数:**
@
@shi-xiaoxiao-iris 已提交
1114

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

@
@shi-xiaoxiao-iris 已提交
1120
**示例:**
@
@shi-xiaoxiao-iris 已提交
1121

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

Z
zengyawen 已提交
1132
### off('deviceStateChange')
Z
zengyawen 已提交
1133

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

取消注册设备状态回调。

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

@
@shi-xiaoxiao-iris 已提交
1140
**参数:**
@
@shi-xiaoxiao-iris 已提交
1141

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

@
@shi-xiaoxiao-iris 已提交
1147
**示例:**
@
@shi-xiaoxiao-iris 已提交
1148

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

1159 1160
### on('deviceFound')

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

注册发现设备回调监听。

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

@
@shi-xiaoxiao-iris 已提交
1167
**参数:**
@
@shi-xiaoxiao-iris 已提交
1168

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

@
@shi-xiaoxiao-iris 已提交
1174
**示例:**
@
@shi-xiaoxiao-iris 已提交
1175

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

### off('deviceFound')

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

取消注册设备发现回调。

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

@
@shi-xiaoxiao-iris 已提交
1194
**参数:**
@
@shi-xiaoxiao-iris 已提交
1195

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

@
@shi-xiaoxiao-iris 已提交
1201
**示例:**
@
@shi-xiaoxiao-iris 已提交
1202

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

### on('discoverFail')

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

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

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

@
@shi-xiaoxiao-iris 已提交
1221
**参数:**
@
@shi-xiaoxiao-iris 已提交
1222

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

@
@shi-xiaoxiao-iris 已提交
1228
**示例:**
@
@shi-xiaoxiao-iris 已提交
1229

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

### off('discoverFail')

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

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

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

@
@shi-xiaoxiao-iris 已提交
1248
**参数:**
@
@shi-xiaoxiao-iris 已提交
1249

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

@
@shi-xiaoxiao-iris 已提交
1255
**示例:**
@
@shi-xiaoxiao-iris 已提交
1256

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

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
1275
**参数:**
@
@shi-xiaoxiao-iris 已提交
1276

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

@
@shi-xiaoxiao-iris 已提交
1282

@
@shi-xiaoxiao-iris 已提交
1283
**示例:**
@
@shi-xiaoxiao-iris 已提交
1284

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

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
1303
**参数:**
@
@shi-xiaoxiao-iris 已提交
1304

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

@
@shi-xiaoxiao-iris 已提交
1310
**示例:**
@
@shi-xiaoxiao-iris 已提交
1311

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

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
1330
**参数:**
@
@shi-xiaoxiao-iris 已提交
1331

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

@
@shi-xiaoxiao-iris 已提交
1337
**示例:**
@
@shi-xiaoxiao-iris 已提交
1338

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

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

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

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

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

@
@shi-xiaoxiao-iris 已提交
1357
**参数:**
@
@shi-xiaoxiao-iris 已提交
1358

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

@
@shi-xiaoxiao-iris 已提交
1364
**示例:**
@
@shi-xiaoxiao-iris 已提交
1365

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

Z
zengyawen 已提交
1376 1377 1378
### on('serviceDie')

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

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

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

@
@shi-xiaoxiao-iris 已提交
1384
**参数:**
@
@shi-xiaoxiao-iris 已提交
1385

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

@
@shi-xiaoxiao-iris 已提交
1391
**示例:**
@
@shi-xiaoxiao-iris 已提交
1392

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

Z
zengyawen 已提交
1403 1404 1405 1406 1407
### off('serviceDie')

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

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

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

@
@shi-xiaoxiao-iris 已提交
1411
**参数:**
@
@shi-xiaoxiao-iris 已提交
1412

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

@
@shi-xiaoxiao-iris 已提交
1418
**示例:**
@
@shi-xiaoxiao-iris 已提交
1419

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