js-apis-useriam-userauth.md 58.4 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.userIAM.userAuth (用户认证)
Z
zengyawen 已提交
2

3 4 5
提供用户认证能力,可应用于设备解锁、支付、应用登录等身份认证场景。

> **说明:**
Z
zengyawen 已提交
6 7 8 9 10
> 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。


## 导入模块

11
```js
Z
zengyawen 已提交
12 13 14
import userIAM_userAuth from '@ohos.userIAM.userAuth';
```

L
liuziwei 已提交
15 16
## WindowModeType<sup>10+</sup>

17
表示用户身份认证组件的窗口类型。
L
liuziwei 已提交
18 19 20 21 22 23

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

| 名称       | 值   | 说明       |
| ---------- | ---- | ---------- |
| DIALOG_BOX | 1    | 弹框类型。 |
24
| FULLSCREEN | 2    | 全屏类型。 |
L
liuziwei 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

## AuthParam<sup>10+</sup>

用户认证相关参数。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

| 名称           | 类型                               | 必填 | 说明                                   |
| -------------- | ---------------------------------- | ---- | -------------------------------------- |
| challenge      | Uint8Array                         | 是   | 挑战值,最大长度为32字节,可以填null。 |
| authType       | [UserAuthType](#userauthtype8)[]   | 是   | 认证类型。                             |
| authTrustLevel | [AuthTrustLevel](#authtrustlevel8) | 是   | 认证信任等级。                         |

## WidgetParam<sup>10+</sup>

40
统一认证组件相关参数。
L
liuziwei 已提交
41 42 43 44 45

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

| 名称                 | 类型                                | 必填 | 说明                 |
| -------------------- | ----------------------------------- | ---- | -------------------- |
46 47 48
| title                | string                              | 是   | 认证组件标题。       |
| navigationButtonText | string                              | 否   | 导航按键的说明文本。 |
| windowModeType       | [WindowModeType](#windowmodetype10) | 否   | 组件是否全屏显示。   |
L
liuziwei 已提交
49

50
## UserAuthResult<sup>10+</sup>
L
liuziwei 已提交
51 52 53 54 55

用户认证结果。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

56 57
| 名称     | 类型                           | 必填 | 说明                                                         |
| -------- | ------------------------------ | ---- | ------------------------------------------------------------ |
L
add  
liuziwei 已提交
58
| result   | number                         | 是   | 用户认证结果。若结果为成功返回0,若失败返回相应错误码,错误码详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)。 |
59 60 61
| token    | Uint8Array                     | 否   | 认证通过的令牌信息。                                         |
| authType | [UserAuthType](#userauthtype8) | 否   | 认证类型。                                                   |

L
liuziwei 已提交
62 63 64 65 66 67 68

## IAuthCallback<sup>10+</sup>

返回认证结果的回调对象。

### onResult<sup>10+</sup>

69
onResult(result: UserAuthResult): void
L
liuziwei 已提交
70 71 72 73 74 75 76 77 78

回调函数,返回认证结果。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名 | 类型                               | 必填 | 说明       |
| ------ | ---------------------------------- | ---- | ---------- |
79
| result | [UserAuthResult](userauthresult10) | 是   | 认证结果。 |
L
liuziwei 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

AuthParam authParam = {
    challenge: new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
    authType: userIAM_userAuth.UserAuthType.PIN;
    authTrustLevel: userIAM_userAuth.AuthTrustLevel.ATL1;
}
WidgetParam widgetParam = {
    title: "输入口令密码";
    windowMode: userIAM_userAuth.WindowModeType.DIALOG_BOX;
}
let userAuthInstance;
try {
    userAuthInstance = userIAM_userAuth.getUserAuthInstance(authParam, widgetParam);
    console.info("get userAuth instance success");
} catch (error) {
    console.info("get userAuth instance failed, error = " + error);
}

try {
    userAuthInstance.on('result', {
    	callback: onResult(result) {
            console.log("authV10 result " + result.result);
            console.log("authV10 token " + result.token);
            console.log("authV10 authType " + result.authType);
        }
     });
    console.info("subscribe authentication event success");
} catch (error) {
    console.info("subscribe authentication event failed" + error);
    //do error
}
```

## UserAuthInstance<sup>10+</sup>

120 121
用于执行用户身份认证,并支持使用统一用户身份认证组件。
使用以下接口前,都需要先通过[getUserAuthInstance](#useriam_userauthgetuserauthinstance10)方法获取UserAuthInstance对象。
L
liuziwei 已提交
122 123 124

### on<sup>10+</sup>

125
on(type: 'result', callback: IAuthCallback): void
L
liuziwei 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139

订阅用户身份认证结果。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名   | 类型                             | 必填 | 说明                                       |
| -------- | -------------------------------- | ---- | ------------------------------------------ |
| type     | 'result'                         | 是   | 订阅事件类型,表明该事件用来返回认证结果。 |
| callback | [IAuthCallback](iauthcallback10) | 是   | 认证接口的回调函数,用于返回认证结果。     |

**错误码:**

140 141
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
| 错误码ID | 错误信息                 |
| -------- | ------------------------ |
| 401      | Incorrect parameters.    |
| 12500002 | General operation error. |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

AuthParam authParam = {
    challenge: new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
    authType: userIAM_userAuth.UserAuthType.PIN;
    authTrustLevel: userIAM_userAuth.AuthTrustLevel.ATL1;
}
WidgetParam widgetParam = {
    title: "输入口令密码";
    windowMode: userIAM_userAuth.WindowModeType.DIALOG_BOX;
}
let userAuthInstance;
try {
    userAuthInstance = userIAM_userAuth.getUserAuthInstance(authParam, widgetParam);
    console.info("get userAuth instance success");
} catch (error) {
    console.info("get userAuth instance failed, error = " + error);
}

try {
    userAuthInstance.on('result', {
    	callback: onResult(result) {
            console.log("authV10 result " + result.result);
            console.log("authV10 token " + result.token);
            console.log("authV10 authType " + result.authType);
        }
     });
    console.info("subscribe authentication event success");
} catch (error) {
    console.info("subscribe authentication event failed" + error);
    //do error
}
```

### off<sup>10+</sup>

186
off(type: 'result', callback?: IAuthCallback): void
L
liuziwei 已提交
187 188 189

取消订阅用户身份认证结果。

L
add  
liuziwei 已提交
190
> **说明**:需要使用已经成功订阅事件的[UserAuthInstance](#userauthinstance10)对象调用该接口进行取消订阅。
L
liuziwei 已提交
191 192 193 194 195 196 197 198 199 200 201 202

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名   | 类型                             | 必填 | 说明                                       |
| -------- | -------------------------------- | ---- | ------------------------------------------ |
| type     | 'result'                         | 是   | 订阅事件类型,表明该事件用来返回认证结果。 |
| callback | [IAuthCallback](iauthcallback10) | 否   | 认证接口的回调函数,用于返回认证结果。     |

**错误码:**

203 204
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
| 错误码ID | 错误信息                 |
| -------- | ------------------------ |
| 401      | Incorrect parameters.    |
| 12500002 | General operation error. |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

AuthParam authParam = {
    challenge: new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
    authType: userIAM_userAuth.UserAuthType.PIN;
    authTrustLevel: userIAM_userAuth.AuthTrustLevel.ATL1;
}
WidgetParam widgetParam = {
    title: "输入口令密码";
    windowMode: userIAM_userAuth.WindowModeType.DIALOG_BOX;
}
let userAuthInstance;
try {
    userAuthInstance = userIAM_userAuth.getUserAuthInstance(authParam, widgetParam);
    console.info("get userAuth instance success");
} catch (error) {
    console.info("get userAuth instance failed, error = " + error);
}

//订阅认证结果
try {
    userAuthInstance.on('result', {
    	callback: onResult(result) {
            console.log("authV10 result " + result.result);
            console.log("authV10 token " + result.token);
            console.log("authV10 authType " + result.authType);
        }
     });
    console.info("subscribe authentication event success");
} catch (error) {
    console.info("subscribe authentication event failed" + error);
    //do error
}
//取消订阅认证结果
try {
    userAuthInstance.off('result');
    console.info("cancel subscribe authentication event success");
} catch (error) {
    console.info("cancel subscribe authentication event failed" + error);
    //do error
}
```

### start<sup>10+</sup>

258
start(): void
L
liuziwei 已提交
259 260 261 262 263 264 265 266 267

开始认证。

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**错误码:**

268 269
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282
| 错误码ID | 错误信息                                         |
| -------- | ------------------------------------------------ |
| 201      | Permission verification failed.                  |
| 401      | Incorrect parameters.                            |
| 12500001 | Authentication failed.                           |
| 12500002 | General operation error.                         |
| 12500003 | The operation is canceled.                       |
| 12500004 | The operation is time-out.                       |
| 12500005 | The authentication type is not supported.        |
| 12500006 | The authentication trust level is not supported. |
| 12500007 | The authentication task is busy.                 |
| 12500009 | The authenticator is locked.                     |
| 12500010 | The type of credential has not been enrolled.    |
283
| 12500011 | The authentication is canceled from widget's navigation button.      |
L
liuziwei 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

AuthParam authParam = {
    challenge: new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
    authType: userIAM_userAuth.UserAuthType.PIN;
    authTrustLevel: userIAM_userAuth.AuthTrustLevel.ATL1;
}
WidgetParam widgetParam = {
    title: "输入口令密码";
    windowMode: userIAM_userAuth.WindowModeType.DIALOG_BOX;
}
let userAuthInstance;
try {
    userAuthInstance = userIAM_userAuth.getUserAuthInstance(authParam, widgetParam);
    console.info("get userAuth instance success");
} catch (error) {
    console.info("get userAuth instance failed, error = " + error);
}

try {
    userAuthInstance.start();
    console.info("userAuthInstanceV10 start auth success");
} catch (error) {
    console.info("userAuthInstanceV10 start auth failed, error = " + error);
    //do error
}
```

### cancel<sup>10+</sup>

318
cancel(): void
L
liuziwei 已提交
319 320 321

取消认证。

322
> **说明**:此时UserAuthInstance需要是正在进行认证的对象。
L
liuziwei 已提交
323 324 325 326 327 328 329

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**错误码:**

330 331 332 333 334
| 错误码ID | 错误信息                        |
| -------- | ------------------------------- |
| 201      | Permission verification failed. |
| 401      | Incorrect parameters.           |
| 12500002 | General operation error.        |
L
liuziwei 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

AuthParam authParam = {
    challenge: new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
    authType: userIAM_userAuth.UserAuthType.PIN;
    authTrustLevel: userIAM_userAuth.AuthTrustLevel.ATL1;
}
WidgetParam widgetParam = {
    title: "输入口令密码";
    windowMode: userIAM_userAuth.WindowModeType.DIALOG_BOX;
}

let userAuthInstance;
try {
    userAuthInstance = userIAM_userAuth.getUserAuthInstance(authParam, widgetParam);
    console.info("get userAuth instance success");
} catch (error) {
    console.info("get userAuth instance failed, error = " + error);
}

//开始认证
try {
    userAuthInstance.start();
    console.info("userAuthInstanceV10 start auth success");
} catch (error) {
    console.info("userAuthInstanceV10 start auth failed, error = " + error);
    //do error
}

//取消认证
try {
    userAuthInstance.cancel();
    console.info("cancel auth success");
} catch (error) {
    console.info("cancel auth failed, error = " + error);
    //do error
}
```

## userIAM_userAuth.getUserAuthInstance<sup>10+</sup>

380
getUserAuthInstance(authParam: AuthParam, widgetParam: WidgetParam): UserAuthInstance
L
liuziwei 已提交
381

382
获取[UserAuthInstance](#userauthinstance10)对象,用于执行用户身份认证,并支持使用统一用户身份认证组件。
L
liuziwei 已提交
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403

> **说明:**
> 每个UserAuthInstance只能进行一次认证,若需要再次进行认证则需重新获取UserAuthInstance。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名      | 类型                          | 必填 | 说明                                   |
| ----------- | ----------------------------- | ---- | -------------------------------------- |
| authParam   | [AuthParam](authparam10)      | 是   | 挑战值,最大长度为32字节,可以填null。 |
| widgetParam | [WidgetParam](#widgetparam10) | 是   | 认证类型,当前支持FACE。               |

**返回值:**

| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [UserAuthInstance](#userauthinstance10) | 认证器对象。 |

**错误码:**

404 405
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
| 错误码ID | 错误信息                                         |
| -------- | ------------------------------------------------ |
| 401      | Incorrect parameters.                            |
| 12500002 | General operation error.                         |
| 12500005 | The authentication type is not supported.        |
| 12500006 | The authentication trust level is not supported. |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

AuthParam authParam = {
    challenge: new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
    authType: userIAM_userAuth.UserAuthType.PIN;
    authTrustLevel: userIAM_userAuth.AuthTrustLevel.ATL1;
}
WidgetParam widgetParam = {
    title: "输入口令密码";
    windowMode: userIAM_userAuth.WindowModeType.DIALOG_BOX;
}

try {
    let userAuthInstance = userIAM_userAuth.getUserAuthInstance(authParam, widgetParam);
    console.info("get userAuth instance success");
} catch (error) {
    console.info("get userAuth instance failed, error = " + error);
}
```

## NoticeType<sup>10+</sup>

用户身份认证的通知类型。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

| 名称          | 值   | 说明                 |
| ------------- | ---- | -------------------- |
444
| WIDGET_NOTICE | 1    | 表示来自组件的通知。 |
L
liuziwei 已提交
445 446 447

## userIAM_userAuth.sendNotice<sup>10+</sup>

448
sendNotice(noticeType: NoticeType, eventData: string): void
L
liuziwei 已提交
449

450
在使用统一身份认证组件进行用户身份认证时,用于接收来自统一身份认证组件的通知。
L
liuziwei 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464

**需要权限**:ohos.permission.SUPPORT_USER_AUTH

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名     | 类型                      | 必填 | 说明       |
| ---------- | ------------------------- | ---- | ---------- |
| noticeType | [NoticeType](#noticetype) | 是   | 通知类型。 |
| eventData  | string                    | 是   | 事件数据。 |

**错误码:**

465 466
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
| 错误码ID | 错误信息                                |
| -------- | --------------------------------------- |
| 201      | Permission verification failed.         |
| 202      | The caller is not a system application. |
| 401      | Incorrect parameters.                   |
| 12500002 | General operation error.                |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let noticeType = userIAM_userAuth.NoticeType.WIDGET_NOTICE;
sendNotice(noticeType, {"eventData" : "EVENT_AUTH_TYPE_READY"});
```

## UserAuthWidgetMgr<sup>10+</sup>

485
组件管理接口,可将用身份认证组件注册到UserAuthWidgetMgr中,由UserAuthWidgetMgr进行管理、调度。
L
liuziwei 已提交
486 487 488

### on<sup>10+</sup>

489
on(type: 'command', callback: IAuthWidgetCallback): void
L
liuziwei 已提交
490

491
身份认证组件订阅来自用户认证框架的命令。
L
liuziwei 已提交
492 493 494 495 496 497 498

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名   | 类型                                          | 必填 | 说明                                                         |
| -------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
499 500
| type     | 'command'                                     | 是   | 订阅事件类型,表明该事件用于用户认证框架向身份认证组件发送命令。 |
| callback | [IAuthWidgetCallback](#iauthwidgetcallback10) | 是   | 组件管理接口的回调函数,用于用户认证框架向身份认证组件发送命令。 |
L
liuziwei 已提交
501 502 503

**错误码:**

504 505
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
| 错误码ID | 错误信息                 |
| -------- | ------------------------ |
| 401      | Incorrect parameters.    |
| 12500002 | General operation error. |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let version = 1;
let userAuthWidgetMgr;
try {
    userAuthWidgetMgr = userIAM_userAuth.getUserAuthWidgetMgr(version);
    console.info("get userAuthWidgetMgr instance success");
} catch (error) {
    console.info("get userAuthWidgetMgr instance failed, error = " + error);
}

try {
    userAuthWidgetMgr.on('command', {
    	callback: sendCommand(cmdData) {
            console.log("The cmdData is " + cmdData);
        }
     })
    console.info("subscribe authentication event success");
} catch (error) {
    console.info("subscribe authentication event failed, error = " + error);
}
```

### off<sup>10+</sup>

539
off(type: 'command', callback?: IAuthWidgetCallback): void
L
liuziwei 已提交
540

541
身份认证组件取消订阅来自用户认证框架的命令。
L
liuziwei 已提交
542 543 544 545 546 547 548

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名   | 类型                                          | 必填 | 说明                                                         |
| -------- | --------------------------------------------- | ---- | ------------------------------------------------------------ |
549 550
| type     | 'command'                                     | 是   | 订阅事件类型,表明该事件用于用户认证框架向身份认证组件发送命令。 |
| callback | [IAuthWidgetCallback](#iauthwidgetcallback10) | 否   | 组件管理接口的回调函数,用于用户认证框架向身份认证组件发送命令。 |
L
liuziwei 已提交
551 552 553

**错误码:**

554 555
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
| 错误码ID | 错误信息                 |
| -------- | ------------------------ |
| 401      | Incorrect parameters.    |
| 12500002 | General operation error. |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let version = 1;
let userAuthWidgetMgr;
try {
    userAuthWidgetMgr = userIAM_userAuth.getUserAuthWidgetMgr(version);
    console.info("get userAuthWidgetMgr instance success");
} catch (error) {
    console.info("get userAuthWidgetMgr instance failed, error = " + error);
}

//订阅用户身份认证框架的命令
try {
    userAuthWidgetMgr.on('command', {
    	callback: sendCommand(cmdData) {
            console.log("The cmdData is " + cmdData);
        }
     })
    console.info("subscribe authentication event success");
} catch (error) {
    console.info("subscribe authentication event failed, error = " + error);
}
//取消订阅用户身份认证框架的命令
try {
    userAuthWidgetMgr.off('command');
    console.info("cancel subscribe authentication event success");
} catch (error) {
    console.info("cancel subscribe authentication event failed, error = " + error);
}
```

## userIAM_userAuth.getUserAuthWidgetMgr<sup>10+</sup>

597
getUserAuthWidgetMgr(version: number): UserAuthWidgetMgr
L
liuziwei 已提交
598 599 600 601 602 603 604 605 606 607 608 609

获取UserAuthWidgetMgr对象,用于执行用户身份认证。

> **说明:**
> 每个UserAuthInstance只能进行一次认证,若需要再次进行认证则需重新获取UserAuthInstance。

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名  | 类型   | 必填 | 说明                 |
| ------- | ------ | ---- | -------------------- |
610
| version | number | 是   | 表示认证组件的版本。 |
L
liuziwei 已提交
611 612 613 614 615 616 617 618 619

**返回值:**

| 类型                                      | 说明         |
| ----------------------------------------- | ------------ |
| [UserAuthWidgetMgr](#userauthwidgetmgr10) | 认证器对象。 |

**错误码:**

620 621
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

L
liuziwei 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
| 错误码ID | 错误信息                                |
| -------- | --------------------------------------- |
| 201      | Permission verification failed.         |
| 202      | The caller is not a system application. |
| 401      | Incorrect parameters.                   |
| 12500002 | General operation error.                |

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let version = 1;
try {
    let userAuthWidgetMgr = userIAM_userAuth.getUserAuthWidgetMgr(version);
    console.info("get userAuthWidgetMgr instance success");
} catch (error) {
    console.info("get userAuthWidgetMgr instance failed, error = " + error);
}
```

## IAuthWidgetCallback<sup>10+</sup>

645
认证组件通过该回调获取用户认证框架发送的命令。
L
liuziwei 已提交
646 647 648

### sendCommand<sup>10+</sup>

649
sendCommand(cmdData: string): void
L
liuziwei 已提交
650

651
回调函数,用于用户认证框架向组件发送命令。
L
liuziwei 已提交
652 653 654 655 656 657 658

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

| 参数名  | 类型   | 必填 | 说明                               |
| ------- | ------ | ---- | ---------------------------------- |
659
| cmdData | string | 是   | 用户身份认证框架向组件发送的命令。 |
L
liuziwei 已提交
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679

**示例:**

```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let version = 1;
try {
    let userAuthWidgetMgr = userIAM_userAuth.getUserAuthWidgetMgr(version);
    userAuthWidgetMgr.on('command', {
    	callback: sendCommand(cmdData) {
            console.log("The cmdData is " + cmdData);
        }
     })
    console.info("subscribe authentication event success");
} catch (error) {
    console.info("subscribe authentication event failed, error = " + error);
}
```

Y
youliang_1314 已提交
680 681 682 683
## AuthResultInfo<sup>9+</sup>

表示认证结果信息。

684
**系统能力**:以下各项对应的系统能力均为SystemCapability.UserIAM.UserAuth.Core
Y
youliang_1314 已提交
685

Y
youliang_1314 已提交
686
| 名称         | 类型   | 必填 | 说明                 |
Y
youliang_1314 已提交
687 688 689
| ------------ | ---------- | ---- | -------------------- |
| result        | number | 是   | 认证结果。       |
| token        | Uint8Array | 否   | 用户身份认证通过的凭证。 |
J
JDfaker 已提交
690 691
| remainAttempts  | number     | 否   | 剩余的认证尝试次数。 |
| lockoutDuration | number     | 否   | 认证操作的锁定时长,时间单位为毫秒ms。 |
Y
youliang_1314 已提交
692 693 694 695 696 697 698

## TipInfo<sup>9+</sup>

表示认证过程中的提示信息。

**系统能力**:以下各项对应的系统能力均为SystemCapability.UserIAM.UserAuth.Core。

Y
youliang_1314 已提交
699
| 名称         | 类型   | 必填 | 说明                 |
Y
youliang_1314 已提交
700 701 702 703
| ------------ | ---------- | ---- | -------------------- |
| module        | number | 是   | 发送提示信息的模块标识。       |
| tip        | number | 是   | 认证过程提示信息。       |

Y
youliang_1314 已提交
704 705
## EventInfo<sup>9+</sup>

Y
youliang_1314 已提交
706
表示认证过程中事件信息的类型。
Y
youliang_1314 已提交
707

Y
youliang_1314 已提交
708
**系统能力**:以下各项对应的系统能力均为SystemCapability.UserIAM.UserAuth.Core。
Y
youliang_1314 已提交
709

Y
youliang_1314 已提交
710
| 取值类型    | 说明                       |
Y
youliang_1314 已提交
711
| --------- | ----------------------- |
712 713
| [AuthResultInfo](#authresultinfo9)    | 获取到的认证结果信息。  |
| [TipInfo](#tipinfo9)    | 认证过程中的提示信息。      |
Y
youliang_1314 已提交
714

Y
youliang_1314 已提交
715 716
## AuthEventKey<sup>9+</sup>

717
表示认证事件类型的关键字,作为[on](#ondeprecated)接口的的参数。
Y
youliang_1314 已提交
718

719
**系统能力**:以下各项对应的系统能力均为SystemCapability.UserIAM.UserAuth.Core。
Y
youliang_1314 已提交
720 721 722

| 取值类型       | 说明                    |
| ---------- | ----------------------- |
723 724
| "result" | [on](#ondeprecated)接口第一个参数为"result"时,[callback](#callback9)回调返回认证的结果信息。 |
| "tip"    | [on](#ondeprecated)接口第一个参数为"tip"时,[callback](#callback9)回调返回认证操作中的提示信息。 |
Y
youliang_1314 已提交
725

Y
youliang_1314 已提交
726 727
## AuthEvent<sup>9+</sup>

Y
youliang_1314 已提交
728
认证接口的异步回调对象。
Y
youliang_1314 已提交
729 730 731

### callback<sup>9+</sup>

Y
youliang_1314 已提交
732
callback(result : EventInfo) : void
Y
youliang_1314 已提交
733

Y
youliang_1314 已提交
734
通过该回调获取认证结果信息或认证过程中的提示信息。
Y
youliang_1314 已提交
735 736 737 738 739

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

Y
youliang_1314 已提交
740
| 参数名    | 类型                       | 必填 | 说明                           |
741 742
| --------- | -------------------------- | ---- | ------------------------------ |
| result    | [EventInfo](#eventinfo9)     | 是   | 返回的认证结果信息或提示信息。  |
Y
youliang_1314 已提交
743 744 745

**示例:**

Y
youliang_1314 已提交
746 747 748 749 750 751 752 753 754 755
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let challenge = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
let authType = userIAM_userAuth.UserAuthType.FACE;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;
// 通过callback获取认证结果
try {
    let auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    auth.on("result", {
Y
youliang_1314 已提交
756 757 758 759 760 761
        callback: (result: userIAM_userAuth.AuthResultInfo) => {
            console.log("authV9 result " + result.result);
            console.log("authV9 token " + result.token);
            console.log("authV9 remainAttempts " + result.remainAttempts);
            console.log("authV9 lockoutDuration " + result.lockoutDuration);
        }
Y
youliang_1314 已提交
762 763 764 765 766 767 768 769 770 771 772
    });
    auth.start();
    console.log("authV9 start success");
} catch (error) {
    console.log("authV9 error = " + error);
    // do error
}
// 通过callback获取认证过程中的提示信息
try {
    let auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    auth.on("tip", {
773 774 775 776 777 778 779 780 781
        callback : (result : userIAM_userAuth.TipInfo) => {
            switch (result.tip) {
                case userIAM_userAuth.FaceTips.FACE_AUTH_TIP_TOO_BRIGHT:
                // do something;
                case userIAM_userAuth.FaceTips.FACE_AUTH_TIP_TOO_DARK:
                // do something;
                default:
                // do others
            }
Y
youliang_1314 已提交
782
        }
Y
youliang_1314 已提交
783 784 785 786 787 788 789 790
    });
    auth.start();
    console.log("authV9 start success");
} catch (error) {
    console.log("authV9 error = " + error);
    // do error
}
```
Y
youliang_1314 已提交
791

L
liuziwei 已提交
792
## AuthInstance<sup>(deprecated)</sup>
Y
youliang_1314 已提交
793 794 795

执行用户认证的对象。

L
liuziwei 已提交
796 797 798 799
> **说明:**
> 从 API version 9 开始支持,从 API version 10 开始废弃,请使用[UserAuthInstance](#userauthinstance10)替代。

### on<sup>(deprecated)</sup>
Y
youliang_1314 已提交
800

Y
youliang_1314 已提交
801
on : (name : AuthEventKey, callback : AuthEvent) => void
Y
youliang_1314 已提交
802

Y
youliang_1314 已提交
803
订阅指定类型的用户认证事件。
Y
youliang_1314 已提交
804

805
> **说明:**
L
liuziwei 已提交
806 807 808 809
> 从 API version 9 开始支持,从 API version 10 开始废弃。

> **说明:**
> 使用获取到的[AuthInstance](#authinstancedeprecated)对象调用该接口进行订阅。
Y
youliang_1314 已提交
810 811 812 813 814

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

Y
youliang_1314 已提交
815
| 参数名    | 类型                        | 必填 | 说明                       |
Y
youliang_1314 已提交
816
| --------- | -------------------------- | ---- | ------------------------- |
Y
youliang_1314 已提交
817
| name  | [AuthEventKey](#autheventkey9) | 是   | 表示认证事件类型,取值为"result"时,回调函数返回认证结果;取值为"tip"时,回调函数返回认证过程中的提示信息。 |
Y
youliang_1314 已提交
818
| callback  | [AuthEvent](#authevent9)   | 是   | 认证接口的回调函数,用于返回认证结果或认证过程中的提示信息。 |
Y
youliang_1314 已提交
819 820 821

**错误码:**

822 823
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

Y
youliang_1314 已提交
824 825 826 827
| 错误码ID | 错误信息 |
| -------- | ------- |
| 401 | Incorrect parameters. |
| 12500002 | General operation error. |
Y
youliang_1314 已提交
828 829 830

**示例:**

Y
youliang_1314 已提交
831 832 833 834 835 836 837 838 839 840
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let challenge = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
let authType = userIAM_userAuth.UserAuthType.FACE;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;
try {
    let auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    // 订阅认证结果
    auth.on("result", {
Y
youliang_1314 已提交
841 842 843 844 845 846
        callback: (result: userIAM_userAuth.AuthResultInfo) => {
            console.log("authV9 result " + result.result);
            console.log("authV9 token " + result.token);
            console.log("authV9 remainAttempts " + result.remainAttempts);
            console.log("authV9 lockoutDuration " + result.lockoutDuration);
        }
Y
youliang_1314 已提交
847 848 849
    });
    // 订阅认证过程中的提示信息
    auth.on("tip", {
Y
youliang_1314 已提交
850 851 852 853 854 855 856 857 858 859
        callback : (result : userIAM_userAuth.TipInfo) => {
            switch (result.tip) {
                case userIAM_userAuth.FaceTips.FACE_AUTH_TIP_TOO_BRIGHT:
                // do something;
                case userIAM_userAuth.FaceTips.FACE_AUTH_TIP_TOO_DARK:
                // do something;
                default:
                // do others
            }
        }
Y
youliang_1314 已提交
860 861 862 863 864 865 866 867
    });
    auth.start();
    console.log("authV9 start success");
} catch (error) {
    console.log("authV9 error = " + error);
    // do error
}
```
Y
youliang_1314 已提交
868

L
liuziwei 已提交
869
### off<sup>(deprecated)</sup>
Y
youliang_1314 已提交
870

Y
youliang_1314 已提交
871
off : (name : AuthEventKey) => void
Y
youliang_1314 已提交
872

Y
youliang_1314 已提交
873
取消订阅特定类型的认证事件。
Y
youliang_1314 已提交
874

L
liuziwei 已提交
875 876 877
>**说明:**
>从 API version 9 开始支持,从 API version 10 开始废弃。

878
> **说明:**
L
liuziwei 已提交
879
> 需要使用已经成功订阅事件的[AuthInstance](#authinstancedeprecated)对象调用该接口进行取消订阅。
Y
youliang_1314 已提交
880 881 882

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

Y
youliang_1314 已提交
883
| 名称    | 类型                        | 必填 | 说明                       |
Y
youliang_1314 已提交
884
| --------- | -------------------------- | ---- | ------------------------- |
Y
youliang_1314 已提交
885 886 887 888
| name    | [AuthEventKey](#autheventkey9)      | 是   | 表示认证事件类型,取值为"result"时,取消订阅认证结果;取值为"tip"时,取消订阅认证过程中的提示信息。 |

**错误码:**

889 890
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

Y
youliang_1314 已提交
891 892 893 894
| 错误码ID | 错误信息 |
| -------- | ------- |
| 401 | Incorrect parameters. |
| 12500002 | General operation error. |
Y
youliang_1314 已提交
895 896 897

**示例:**

Y
youliang_1314 已提交
898 899
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';
Y
youliang_1314 已提交
900

Y
youliang_1314 已提交
901 902 903 904 905 906 907 908 909 910 911 912 913 914
let challenge = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
let authType = userIAM_userAuth.UserAuthType.FACE;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;
let auth;
try {
    auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    console.log("get auth instance success");
} catch (error) {
    console.log("get auth instance failed" + error);
}

try {
    // 订阅认证结果
    auth.on("result", {
Y
youliang_1314 已提交
915 916 917 918 919 920
        callback: (result: userIAM_userAuth.AuthResultInfo) => {
            console.log("authV9 result " + result.result);
            console.log("authV9 token " + result.token);
            console.log("authV9 remainAttempts " + result.remainAttempts);
            console.log("authV9 lockoutDuration " + result.lockoutDuration);
        }
Y
youliang_1314 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933
    });
    console.log("subscribe authentication event success");
} catch (error) {
    console.log("subscribe authentication event failed " + error);
}
// 取消订阅认证结果
try {
    auth.off("result");
    console.info("cancel subscribe authentication event success");
} catch (error) {
    console.info("cancel subscribe authentication event failed, error = " + error);
}
```
Y
youliang_1314 已提交
934

L
liuziwei 已提交
935
### start<sup>(deprecated)</sup>
Y
youliang_1314 已提交
936

Y
youliang_1314 已提交
937
start : () => void
Y
youliang_1314 已提交
938

Y
youliang_1314 已提交
939 940 941
开始认证。

> **说明:**
L
liuziwei 已提交
942 943 944 945
> 从 API version 9 开始支持,从 API version 10 开始废弃。

> **说明:**
> 使用获取到的[AuthInstance](#authinstancedeprecated)对象调用该接口进行认证。
Y
youliang_1314 已提交
946 947 948 949 950

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

Y
youliang_1314 已提交
951 952
**错误码:**

953 954
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

Y
youliang_1314 已提交
955 956 957 958
| 错误码ID | 错误信息 |
| -------- | ------- |
| 201 | Permission verification failed. |
| 401 | Incorrect parameters. |
Y
youliang_1314 已提交
959
| 12500001 | Authentication failed. |
Y
youliang_1314 已提交
960
| 12500002 | General operation error. |
Y
youliang_1314 已提交
961 962
| 12500003 | The operation is canceled. |
| 12500004 | The operation is time-out. |
Y
youliang_1314 已提交
963 964
| 12500005 | The authentication type is not supported. |
| 12500006 | The authentication trust level is not supported. |
Y
youliang_1314 已提交
965 966
| 12500007 | The authentication task is busy. |
| 12500009 | The authenticator is locked. |
Y
youliang_1314 已提交
967 968
| 12500010 | The type of credential has not been enrolled. |

Y
youliang_1314 已提交
969 970
**示例:**

Y
youliang_1314 已提交
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let challenge = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
let authType = userIAM_userAuth.UserAuthType.FACE;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;

try {
    let auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    auth.start();
    console.info("authV9 start auth success");
} catch (error) {
    console.info("authV9 start auth failed, error = " + error);
}
```
Y
youliang_1314 已提交
986

L
liuziwei 已提交
987
### cancel<sup>(deprecated)</sup>
Y
youliang_1314 已提交
988

Y
youliang_1314 已提交
989
cancel : () => void
Y
youliang_1314 已提交
990

Y
youliang_1314 已提交
991 992 993
取消认证。

> **说明:**
L
liuziwei 已提交
994 995 996 997
> 从 API version 9 开始支持,从 API version 10 开始废弃。

> **说明:**
> 使用获取到的[AuthInstance](#authinstancedeprecated)对象调用该接口进行取消认证,此[AuthInstance](#authinstancedeprecated)需要是正在进行认证的对象。
Y
youliang_1314 已提交
998 999 1000 1001 1002

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

Y
youliang_1314 已提交
1003 1004
**错误码:**

1005 1006
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

Y
youliang_1314 已提交
1007 1008 1009 1010 1011 1012
| 错误码ID | 错误信息 |
| -------- | ------- |
| 201 | Permission verification failed. |
| 401 | Incorrect parameters. |
| 12500002 | General operation error. |

Y
youliang_1314 已提交
1013 1014
**示例:**

Y
youliang_1314 已提交
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let challenge = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
let authType = userIAM_userAuth.UserAuthType.FACE;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;

try {
    let auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    auth.cancel();
    console.info("cancel auth success");
} catch (error) {
    console.info("cancel auth failed, error = " + error);
}
```
Y
youliang_1314 已提交
1030

L
liuziwei 已提交
1031
## userIAM_userAuth.getAuthInstance<sup>(deprecated)</sup>
Y
youliang_1314 已提交
1032 1033 1034 1035 1036

getAuthInstance(challenge : Uint8Array, authType : UserAuthType, authTrustLevel : AuthTrustLevel): AuthInstance

获取AuthInstance对象,用于执行用户身份认证。

L
liuziwei 已提交
1037
> **说明:**
1038
> 从 API version 9 开始支持,从 API version 10 开始废弃,请使用[getUserAuthInstance](#useriam_userauthgetuserauthinstance10)替代。
L
liuziwei 已提交
1039

Y
youliang_1314 已提交
1040
> **说明:**
Y
youliang_1314 已提交
1041
> 每个AuthInstance只能进行一次认证,若需要再次进行认证则需重新获取AuthInstance。
Y
youliang_1314 已提交
1042 1043 1044 1045 1046

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

Y
youliang_1314 已提交
1047
| 参数名         | 类型                                     | 必填 | 说明                     |
Y
youliang_1314 已提交
1048 1049 1050 1051 1052 1053 1054
| -------------- | ---------------------------------------- | ---- | ------------------------ |
| challenge      | Uint8Array                               | 是   | 挑战值,最大长度为32字节,可以填null。     |
| authType       | [UserAuthType](#userauthtype8)           | 是   | 认证类型,当前支持FACE。 |
| authTrustLevel | [AuthTrustLevel](#authtrustlevel8)       | 是   | 认证信任等级。               |

**返回值:**

L
liuziwei 已提交
1055 1056 1057
| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [AuthInstance](#authinstancedeprecated) | 认证器对象。 |
Y
youliang_1314 已提交
1058

Y
youliang_1314 已提交
1059 1060
**错误码:**

1061 1062
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

Y
youliang_1314 已提交
1063 1064 1065 1066 1067 1068 1069
| 错误码ID | 错误信息 |
| -------- | ------- |
| 401 | Incorrect parameters. |
| 12500002 | General operation error. |
| 12500005 | The authentication type is not supported. |
| 12500006 | The authentication trust level is not supported. |

Y
youliang_1314 已提交
1070 1071
**示例:**

Y
youliang_1314 已提交
1072 1073
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';
Y
youliang_1314 已提交
1074

Y
youliang_1314 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
let challenge = new Uint8Array([1, 2, 3, 4, 5, 6, 7, 8]);
let authType = userIAM_userAuth.UserAuthType.FACE;
let authTrustLevel = userIAM_userAuth.AuthTrustLevel.ATL1;

try {
    let auth = userIAM_userAuth.getAuthInstance(challenge, authType, authTrustLevel);
    console.info("get auth instance success");
} catch (error) {
    console.info("get auth instance success failed, error = " + error);
}
```
Y
youliang_1314 已提交
1086 1087 1088 1089 1090

## userIAM_userAuth.getAvailableStatus<sup>9+</sup>

getAvailableStatus(authType : UserAuthType, authTrustLevel : AuthTrustLevel): void

Y
youliang_1314 已提交
1091
查询指定类型和等级的认证能力是否支持。
Y
youliang_1314 已提交
1092 1093 1094 1095 1096 1097 1098

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

Y
youliang_1314 已提交
1099
| 参数名         | 类型                               | 必填 | 说明                       |
Y
youliang_1314 已提交
1100 1101
| -------------- | ---------------------------------- | ---- | -------------------------- |
| authType       | [UserAuthType](#userauthtype8)     | 是   | 认证类型,当前只支持FACE。 |
Y
youliang_1314 已提交
1102 1103 1104 1105
| authTrustLevel | [AuthTrustLevel](#authtrustlevel8) | 是   | 认证信任等级。       |

**错误码:**

1106 1107
以下错误码的详细介绍请参见[用户认证错误码](../errorcodes/errorcode-useriam.md)

Y
youliang_1314 已提交
1108 1109 1110 1111 1112 1113 1114 1115
| 错误码ID | 错误信息 |
| -------- | ------- |
| 201 | Permission verification failed. |
| 401 | Incorrect parameters. |
| 12500002 | General operation error. |
| 12500005 | The authentication type is not supported. |
| 12500006 | The authentication trust level is not supported. |
| 12500010 | The type of credential has not been enrolled. |
Y
youliang_1314 已提交
1116 1117 1118

**示例:**

Y
youliang_1314 已提交
1119 1120
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';
Y
youliang_1314 已提交
1121

Y
youliang_1314 已提交
1122 1123 1124 1125 1126 1127 1128
try {
    userIAM_userAuth.getAvailableStatus(userIAM_userAuth.UserAuthType.FACE, userIAM_userAuth.AuthTrustLevel.ATL1);
    console.info("current auth trust level is supported");
} catch (error) {
    console.info("current auth trust level is not supported, error = " + error);
}
```
Y
youliang_1314 已提交
1129

1130
## UserAuthResultCode<sup>9+</sup>
Y
youliang_1314 已提交
1131

Y
youliang_1314 已提交
1132
表示返回码的枚举。
Y
youliang_1314 已提交
1133 1134 1135

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

Y
youliang_1314 已提交
1136
| 名称                    |   值   | 说明                 |
Y
youliang_1314 已提交
1137 1138
| ----------------------- | ------ | -------------------- |
| SUCCESS                 | 12500000      | 执行成功。           |
Y
youliang_1314 已提交
1139
| FAIL                    | 12500001      | 认证失败。           |
Y
youliang_1314 已提交
1140 1141 1142 1143 1144 1145 1146 1147
| GENERAL_ERROR           | 12500002      | 操作通用错误。       |
| CANCELED                | 12500003      | 操作取消。           |
| TIMEOUT                 | 12500004      | 操作超时。           |
| TYPE_NOT_SUPPORT        | 12500005      | 不支持的认证类型。   |
| TRUST_LEVEL_NOT_SUPPORT | 12500006      | 不支持的认证等级。   |
| BUSY                    | 12500007      | 忙碌状态。           |
| LOCKED                  | 12500009      | 认证器已锁定。       |
| NOT_ENROLLED            | 12500010      | 用户未录入认证信息。 |
1148
| CANCELED_FROM_WIDGET | 12500011 | 当前的认证操作被用户从组件取消。返回这个错误码,表示使用应用自定义认证。 |
1149

L
liuziwei 已提交
1150
## UserAuth<sup>(deprecated)</sup>
Z
zengyawen 已提交
1151

Y
youliang_1314 已提交
1152
认证器对象。
Z
zengyawen 已提交
1153

Y
youliang_1314 已提交
1154
### constructor<sup>(deprecated)</sup>
Z
zengyawen 已提交
1155

1156
constructor()
1157

Y
youliang_1314 已提交
1158 1159
创建认证器对象。

Y
youliang_1314 已提交
1160
> **说明:**
L
liuziwei 已提交
1161
> 从 API version 8 开始支持,从 API version 9 开始废弃,请使用[getAuthInstance](#useriam_userauthgetauthinstancedeprecated)替代。
Y
youliang_1314 已提交
1162

1163
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1164

1165
**返回值:**
1166

1167 1168
| 类型                   | 说明                 |
| ---------------------- | -------------------- |
L
liuziwei 已提交
1169
| [UserAuth](#userauthdeprecated) | 认证器对象。 |
Z
zengyawen 已提交
1170

1171
**示例:**
1172

Y
youliang_1314 已提交
1173 1174
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';
1175

Y
youliang_1314 已提交
1176 1177
let auth = new userIAM_userAuth.UserAuth();
```
Z
zengyawen 已提交
1178

Y
youliang_1314 已提交
1179
### getVersion<sup>(deprecated)</sup>
Z
zengyawen 已提交
1180

1181
getVersion() : number
Z
zengyawen 已提交
1182

Y
youliang_1314 已提交
1183 1184
获取认证器的版本信息。

Y
youliang_1314 已提交
1185
> **说明:**
1186
> 从 API version 8 开始支持,从 API version 9 开始废弃。
Y
youliang_1314 已提交
1187

H
https://gitee.com/WALL_EYE 已提交
1188 1189
**需要权限**:ohos.permission.ACCESS_BIOMETRIC

1190
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1191

1192
**返回值:**
1193

1194 1195
| 类型   | 说明                   |
| ------ | ---------------------- |
Y
youliang_1314 已提交
1196
| number | 认证器版本信息。 |
1197

1198
**示例:**
Z
zengyawen 已提交
1199

Y
youliang_1314 已提交
1200 1201
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';
1202

Y
youliang_1314 已提交
1203 1204 1205 1206
let auth = new userIAM_userAuth.UserAuth();
let version = auth.getVersion();
console.info("auth version = " + version);
```
1207

Y
youliang_1314 已提交
1208
### getAvailableStatus<sup>(deprecated)</sup>
1209

1210
getAvailableStatus(authType : UserAuthType, authTrustLevel : AuthTrustLevel) : number
1211

Y
youliang_1314 已提交
1212 1213
查询指定类型和等级的认证能力是否支持。

Y
youliang_1314 已提交
1214
> **说明:**
Z
zengyawen 已提交
1215
> 从 API version 8 开始支持,从 API version 9 开始废弃,请使用[getAvailableStatus](#useriam_userauthgetavailablestatus9)替代。
Y
youliang_1314 已提交
1216

H
https://gitee.com/WALL_EYE 已提交
1217 1218
**需要权限**:ohos.permission.ACCESS_BIOMETRIC

1219
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1220

1221
**参数:**
1222

Y
youliang_1314 已提交
1223
| 参数名         | 类型                               | 必填 | 说明                       |
1224 1225
| -------------- | ---------------------------------- | ---- | -------------------------- |
| authType       | [UserAuthType](#userauthtype8)     | 是   | 认证类型,当前只支持FACE。 |
Y
youliang_1314 已提交
1226
| authTrustLevel | [AuthTrustLevel](#authtrustlevel8) | 是   | 认证信任等级。       |
Z
zengyawen 已提交
1227

1228
**返回值:**
1229

1230 1231
| 类型   | 说明                                                         |
| ------ | ------------------------------------------------------------ |
Y
youliang_1314 已提交
1232
| number | 查询结果,结果为SUCCESS时表示支持,其他返回值参见[ResultCode](#resultcodedeprecated)。 |
Z
zengyawen 已提交
1233

1234
**示例:**
1235

Y
youliang_1314 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let auth = new userIAM_userAuth.UserAuth();
let checkCode = auth.getAvailableStatus(userIAM_userAuth.UserAuthType.FACE, userIAM_userAuth.AuthTrustLevel.ATL1);
if (checkCode == userIAM_userAuth.ResultCode.SUCCESS) {
    console.info("check auth support success");
} else {
    console.error("check auth support fail, code = " + checkCode);
}
```
Z
zengyawen 已提交
1247

Y
youliang_1314 已提交
1248
### auth<sup>(deprecated)</sup>
Z
zengyawen 已提交
1249

1250
auth(challenge: Uint8Array, authType: UserAuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array
Z
zengyawen 已提交
1251

Y
youliang_1314 已提交
1252 1253
执行用户认证,使用回调函数返回结果。

Y
youliang_1314 已提交
1254
> **说明:**
1255
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用[start](#startdeprecated)代替。
Y
youliang_1314 已提交
1256

H
https://gitee.com/WALL_EYE 已提交
1257 1258
**需要权限**:ohos.permission.ACCESS_BIOMETRIC

1259
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1260

1261
**参数:**
1262

Y
youliang_1314 已提交
1263
| 参数名         | 类型                                     | 必填 | 说明                     |
1264 1265 1266
| -------------- | ---------------------------------------- | ---- | ------------------------ |
| challenge      | Uint8Array                               | 是   | 挑战值,可以填null。     |
| authType       | [UserAuthType](#userauthtype8)           | 是   | 认证类型,当前支持FACE。 |
1267 1268
| authTrustLevel | [AuthTrustLevel](#authtrustlevel8)       | 是   | 认证信任等级。             |
| callback       | [IUserAuthCallback](#iuserauthcallbackdeprecated) | 是   | 回调函数。        |
1269

1270
**返回值:**
1271

1272 1273
| 类型       | 说明                                                         |
| ---------- | ------------------------------------------------------------ |
Y
youliang_1314 已提交
1274
| Uint8Array | ContextId,作为取消认证[cancelAuth](#cancelauthdeprecated)接口的入参。 |
Z
zengyawen 已提交
1275

1276
**示例:**
Z
zengyawen 已提交
1277

Y
youliang_1314 已提交
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let auth = new userIAM_userAuth.UserAuth();
auth.auth(null, userIAM_userAuth.UserAuthType.FACE, userIAM_userAuth.AuthTrustLevel.ATL1, {
    onResult: (result, extraInfo) => {
        try {
            console.info("auth onResult result = " + result);
            console.info("auth onResult extraInfo = " + JSON.stringify(extraInfo));
            if (result == userIAM_userAuth.ResultCode.SUCCESS) {
                // 此处添加认证成功逻辑
            } else {
                // 此处添加认证失败逻辑
            }
        } catch (e) {
            console.info("auth onResult error = " + e);
        }
    }
});
```
Z
zengyawen 已提交
1298

Y
youliang_1314 已提交
1299
### cancelAuth<sup>(deprecated)</sup>
Z
zengyawen 已提交
1300

1301
cancelAuth(contextID : Uint8Array) : number
Z
zengyawen 已提交
1302

Y
youliang_1314 已提交
1303 1304
表示通过contextID取消本次认证操作。

Y
youliang_1314 已提交
1305
> **说明:**
1306
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用[cancel](#canceldeprecated)代替。
Y
youliang_1314 已提交
1307

H
https://gitee.com/WALL_EYE 已提交
1308 1309
**需要权限**:ohos.permission.ACCESS_BIOMETRIC

1310
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1311

1312
**参数:**
1313

Y
youliang_1314 已提交
1314
| 参数名    | 类型       | 必填 | 说明                                       |
1315
| --------- | ---------- | ---- | ------------------------------------------ |
Y
youliang_1314 已提交
1316
| contextID | Uint8Array | 是   | 上下文的标识,通过[auth](#authdeprecated)接口获取。 |
1317

1318
**返回值:**
1319

1320 1321
| 类型   | 说明                     |
| ------ | ------------------------ |
Y
youliang_1314 已提交
1322
| number | 取消认证的结果,结果为SUCCESS时表示取消成功,其他返回值参见[ResultCode](#resultcodedeprecated)。 |
Z
zengyawen 已提交
1323

1324
**示例:**
1325

Y
youliang_1314 已提交
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

// contextId可通过auth接口获取,此处直接定义
let contextId = new Uint8Array([0, 1, 2, 3, 4, 5, 6, 7]);
let auth = new userIAM_userAuth.UserAuth();
let cancelCode = auth.cancelAuth(contextId);
if (cancelCode == userIAM_userAuth.ResultCode.SUCCESS) {
    console.info("cancel auth success");
} else {
    console.error("cancel auth fail");
}
```
1339

Y
youliang_1314 已提交
1340 1341
## IUserAuthCallback<sup>(deprecated)</sup>

Y
youliang_1314 已提交
1342 1343
返回认证结果的回调对象。

Y
youliang_1314 已提交
1344
> **说明:**
Z
zengyawen 已提交
1345
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用[AuthEvent](#authevent9)代替。
1346

Y
youliang_1314 已提交
1347
### onResult<sup>(deprecated)</sup>
1348

1349
onResult: (result : number, extraInfo : AuthResult) => void
1350

Y
youliang_1314 已提交
1351 1352
回调函数,返回认证结果。

Y
youliang_1314 已提交
1353
> **说明:**
Z
zengyawen 已提交
1354
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用[callback](#callback9)代替。
Y
youliang_1314 已提交
1355

1356
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1357

1358
**参数:**
1359

Y
youliang_1314 已提交
1360
| 参数名    | 类型                       | 必填 | 说明        |
1361 1362
| --------- | -------------------------- | ---- | ------------------------------------------------ |
| result    | number           | 是   | 认证结果,参见[ResultCode](#resultcodedeprecated)。 |
Y
youliang_1314 已提交
1363
| extraInfo | [AuthResult](#authresultdeprecated) | 是   | 扩展信息,不同情况下的具体信息,<br/>如果身份验证通过,则在extraInfo中返回用户认证令牌,<br/>如果身份验证失败,则在extraInfo中返回剩余的用户认证次数,<br/>如果身份验证执行器被锁定,则在extraInfo中返回冻结时间。 |
1364

1365
**示例:**
1366

Y
youliang_1314 已提交
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let auth = new userIAM_userAuth.UserAuth();
auth.auth(null, userIAM_userAuth.UserAuthType.FACE, userIAM_userAuth.AuthTrustLevel.ATL1, {
    onResult: (result, extraInfo) => {
        try {
            console.info("auth onResult result = " + result);
            console.info("auth onResult extraInfo = " + JSON.stringify(extraInfo));
            if (result == userIAM_userAuth.ResultCode.SUCCESS) {
                // 此处添加认证成功逻辑
            }  else {
                // 此处添加认证失败逻辑
            }
        } catch (e) {
            console.info("auth onResult error = " + e);
        }
    }
});
```
Z
zengyawen 已提交
1387

Y
youliang_1314 已提交
1388
### onAcquireInfo<sup>(deprecated)</sup>
Z
zengyawen 已提交
1389

1390
onAcquireInfo ?: (module : number, acquire : number, extraInfo : any) => void
Z
zengyawen 已提交
1391

Y
youliang_1314 已提交
1392 1393
回调函数,返回认证过程中的提示信息,非必须实现。

Y
youliang_1314 已提交
1394
> **说明:**
Z
zengyawen 已提交
1395
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用[callback](#callback9)代替。
Y
youliang_1314 已提交
1396

1397
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1398

1399
**参数:**
Z
zengyawen 已提交
1400

Y
youliang_1314 已提交
1401
| 参数名    | 类型   | 必填 | 说明                           |
1402
| --------- | ------ | ---- | ------------------------------ |
Y
youliang_1314 已提交
1403 1404
| module    | number | 是   | 发送提示信息的模块标识。             |
| acquire   | number | 是   | 认证执过程中的提示信息。 |
1405
| extraInfo | any    | 是   | 预留字段。                     |
Z
zengyawen 已提交
1406

1407
**示例:**
Z
zengyawen 已提交
1408

Y
youliang_1314 已提交
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424
```js
import userIAM_userAuth from '@ohos.userIAM.userAuth';

let auth = new userIAM_userAuth.UserAuth();
auth.auth(null, userIAM_userAuth.UserAuthType.FACE, userIAM_userAuth.AuthTrustLevel.ATL1, {
    onAcquireInfo: (module, acquire, extraInfo) => {
        try {
            console.info("auth onAcquireInfo module = " + module);
            console.info("auth onAcquireInfo acquire = " + acquire);
            console.info("auth onAcquireInfo extraInfo = " + JSON.stringify(extraInfo));
        } catch (e) {
            console.info("auth onAcquireInfo error = " + e);
        }
    }
});
```
1425

Y
youliang_1314 已提交
1426 1427
## AuthResult<sup>(deprecated)</sup>

Y
youliang_1314 已提交
1428 1429
表示认证结果的对象。

Y
youliang_1314 已提交
1430
> **说明:**
Z
zengyawen 已提交
1431
> 从 API version 8 开始支持,从 API version 9 开始废弃,建议使用[AuthResultInfo](#authresultinfo9)代替。
Z
zengyawen 已提交
1432

1433
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1434

Y
youliang_1314 已提交
1435 1436 1437
| 名称         | 类型   | 必填 | 说明                 |
| ------------ | ---------- | ---- | -------------------|
| token        | Uint8Array | 否   | 认证通过的令牌信息。 |
1438 1439 1440
| remainTimes  | number     | 否   | 剩余的认证操作次数。 |
| freezingTime | number     | 否   | 认证操作的冻结时间。 |

Y
youliang_1314 已提交
1441 1442
## ResultCode<sup>(deprecated)</sup>

Y
youliang_1314 已提交
1443 1444
表示返回码的枚举。

Y
youliang_1314 已提交
1445
> **说明:**
1446
> 从 API version 9 开始废弃,建议使用[UserAuthResultCode](#userauthresultcode9)代替。
Z
zengyawen 已提交
1447

1448
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1449

Y
youliang_1314 已提交
1450
| 名称                    | 值 | 说明                 |
1451 1452
| ----------------------- | ------ | -------------------- |
| SUCCESS                 | 0      | 执行成功。           |
Y
youliang_1314 已提交
1453
| FAIL                    | 1      | 认证失败。           |
1454 1455 1456 1457 1458 1459
| GENERAL_ERROR           | 2      | 操作通用错误。       |
| CANCELED                | 3      | 操作取消。           |
| TIMEOUT                 | 4      | 操作超时。           |
| TYPE_NOT_SUPPORT        | 5      | 不支持的认证类型。   |
| TRUST_LEVEL_NOT_SUPPORT | 6      | 不支持的认证等级。   |
| BUSY                    | 7      | 忙碌状态。           |
Y
youliang_1314 已提交
1460
| INVALID_PARAMETERS      | 8      | 无效参数。           |
1461 1462
| LOCKED                  | 9      | 认证器已锁定。       |
| NOT_ENROLLED            | 10     | 用户未录入认证信息。 |
Z
zengyawen 已提交
1463

1464
## FaceTips<sup>8+</sup>
Z
zengyawen 已提交
1465

1466
表示人脸认证过程中提示码的枚举。
Z
zengyawen 已提交
1467

1468
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1469

Y
youliang_1314 已提交
1470
| 名称                          |   值   |    说明                             |
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
| ----------------------------- | ------ | ------------------------------------ |
| FACE_AUTH_TIP_TOO_BRIGHT      | 1      | 光线太强,获取的图像太亮。           |
| FACE_AUTH_TIP_TOO_DARK        | 2      | 光线太暗,获取的图像太暗。           |
| FACE_AUTH_TIP_TOO_CLOSE       | 3      | 人脸距离设备过近。                   |
| FACE_AUTH_TIP_TOO_FAR         | 4      | 人脸距离设备过远。                   |
| FACE_AUTH_TIP_TOO_HIGH        | 5      | 设备太高,仅获取到人脸上部。         |
| FACE_AUTH_TIP_TOO_LOW         | 6      | 设备太低,仅获取到人脸下部。         |
| FACE_AUTH_TIP_TOO_RIGHT       | 7      | 设备太靠右,仅获取到人脸右部。       |
| FACE_AUTH_TIP_TOO_LEFT        | 8      | 设备太靠左,仅获取到人脸左部。       |
| FACE_AUTH_TIP_TOO_MUCH_MOTION | 9      | 在图像采集过程中,用户人脸移动太快。 |
| FACE_AUTH_TIP_POOR_GAZE       | 10     | 没有正视摄像头。                     |
| FACE_AUTH_TIP_NOT_DETECTED    | 11     | 没有检测到人脸信息。                 |
Z
zengyawen 已提交
1483 1484


1485
## FingerprintTips<sup>8+</sup>
Z
zengyawen 已提交
1486

1487
表示指纹认证过程中提示码的枚举。
Z
zengyawen 已提交
1488

1489
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1490

Y
youliang_1314 已提交
1491
| 名称                              |   值   | 说明                                               |
1492 1493 1494 1495 1496 1497 1498
| --------------------------------- | ------ | -------------------------------------------------- |
| FINGERPRINT_AUTH_TIP_GOOD         | 0      | 获取的指纹图像良好。                               |
| FINGERPRINT_AUTH_TIP_DIRTY        | 1      | 由于传感器上可疑或检测到的污垢,指纹图像噪音过大。 |
| FINGERPRINT_AUTH_TIP_INSUFFICIENT | 2      | 由于检测到的情况,指纹图像噪声太大,无法处理。     |
| FINGERPRINT_AUTH_TIP_PARTIAL      | 3      | 仅检测到部分指纹图像。                             |
| FINGERPRINT_AUTH_TIP_TOO_FAST     | 4      | 快速移动,指纹图像不完整。                         |
| FINGERPRINT_AUTH_TIP_TOO_SLOW     | 5      | 缺少运动,指纹图像无法读取。                       |
Z
zengyawen 已提交
1499 1500


1501
## UserAuthType<sup>8+</sup>
Z
zengyawen 已提交
1502

1503
表示身份认证的凭据类型枚举。
Z
zengyawen 已提交
1504

1505
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1506

L
liuziwei 已提交
1507 1508
| 名称        | 值   | 说明       |
| ----------- | ---- | ---------- |
L
add  
liuziwei 已提交
1509
| PIN<sup>10+</sup>         | 1    | 口令认证。 |
L
liuziwei 已提交
1510 1511
| FACE        | 2    | 人脸认证。 |
| FINGERPRINT | 4    | 指纹认证。 |
1512

1513
## AuthTrustLevel<sup>8+</sup>
1514 1515 1516

表示认证结果的信任等级枚举。

1517
**系统能力**:SystemCapability.UserIAM.UserAuth.Core
H
https://gitee.com/WALL_EYE 已提交
1518

Y
youliang_1314 已提交
1519
| 名称 |   值   | 说明                      |
1520 1521 1522 1523
| ---- | ------ | ------------------------- |
| ATL1 | 10000  | 认证结果的信任等级级别1。 |
| ATL2 | 20000  | 认证结果的信任等级级别2。 |
| ATL3 | 30000  | 认证结果的信任等级级别3。 |
1524 1525 1526 1527 1528 1529
| ATL4 | 40000  | 认证结果的信任等级级别4。 |

## userIAM_userAuth.getAuthenticator<sup>(deprecated)</sup>

getAuthenticator(): Authenticator

Y
youliang_1314 已提交
1530 1531
获取Authenticator对象,用于执行用户身份认证。

1532
> **说明:**
Y
youliang_1314 已提交
1533
> 从 API version 8 开始废弃,建议使用[constructor](#constructordeprecated)替代。
1534 1535 1536 1537

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**返回值:**
1538

1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
| 类型                                      | 说明         |
| ----------------------------------------- | ------------ |
| [Authenticator](#authenticatordeprecated) | 认证器对象。 |

**示例:**
  ```js
  let authenticator = userIAM_userAuth.getAuthenticator();
  ```

## Authenticator<sup>(deprecated)</sup>

认证器对象。

Y
youliang_1314 已提交
1552
> **说明:**
L
liuziwei 已提交
1553
> 从 API version 8 开始废弃,建议使用[UserAuth](#userauthdeprecated)替代。
1554 1555 1556

### execute<sup>(deprecated)</sup>

Y
youliang_1314 已提交
1557
execute(type: AuthType, level: SecureLevel, callback: AsyncCallback&lt;number&gt;): void
1558

Y
youliang_1314 已提交
1559 1560
执行用户认证,使用callback方式作为异步方法。

1561
> **说明:**
Y
youliang_1314 已提交
1562
> 从 API version 8 开始废弃,建议使用[auth](#authdeprecated)替代。
1563 1564 1565 1566 1567 1568 1569

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**

Y
youliang_1314 已提交
1570
| 参数名   | 类型                        | 必填 | 说明                      |
1571
| -------- | --------------------------- | ---- | -------------------------- |
Y
youliang_1314 已提交
1572
| type     | AuthType                      | 是   | 认证类型,当前只支持"FACE_ONLY"。<br/>ALL为预留参数,当前版本暂不支持ALL类型的认证。 |
1573
| level    | SecureLevel  | 是   | 安全级别,对应认证的安全级别,有效值为"S1"(最低)、"S2"、"S3"、"S4"(最高)。<br/>具备3D人脸识别能力的设备支持"S3"及以下安全级别的认证。<br/>具备2D人脸识别能力的设备支持"S2"及以下安全级别的认证。 |
Y
youliang_1314 已提交
1574
| callback | AsyncCallback&lt;number&gt; | 是   | 回调函数。    |
1575

1576
callback返回值:
1577 1578 1579 1580 1581 1582

| 类型   | 说明                                                         |
| ------ | ------------------------------------------------------------ |
| number | 表示认证结果,参见[AuthenticationResult](#authenticationresultdeprecated)。 |

**示例:**
Y
youliang_1314 已提交
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593

```js
let authenticator = userIAM_userAuth.getAuthenticator();
authenticator.execute("FACE_ONLY", "S2", (error, code)=>{
    if (code === userIAM_userAuth.ResultCode.SUCCESS) {
        console.info("auth success");
        return;
    }
    console.error("auth fail, code = " + code);
});
```
1594 1595 1596 1597


### execute<sup>(deprecated)</sup>

Y
youliang_1314 已提交
1598 1599 1600
execute(type : AuthType, level : SecureLevel): Promise&lt;number&gt;

执行用户认证,使用promise方式作为异步方法。
1601 1602

> **说明:**
Y
youliang_1314 已提交
1603
> 从 API version 8 开始废弃,建议使用[auth](#authdeprecated)替代。
1604 1605 1606 1607 1608 1609

**需要权限**:ohos.permission.ACCESS_BIOMETRIC

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

**参数:**
1610

Y
youliang_1314 已提交
1611
| 参数名 | 类型   | 必填 | 说明                                                         |
1612
| ------ | ------ | ---- | ------------------------------------------------------------ |
Y
youliang_1314 已提交
1613 1614
| type   | AuthType | 是   | 认证类型,当前只支持"FACE_ONLY"。<br/>ALL为预留参数,当前版本暂不支持ALL类型的认证。 |
| level  | SecureLevel | 是   | 安全级别,对应认证的安全级别,有效值为"S1"(最低)、"S2"、"S3"、"S4"(最高)。<br/>具备3D人脸识别能力的设备支持"S3"及以下安全级别的认证。<br/>具备2D人脸识别能力的设备支持"S2"及以下安全级别的认证。 |
1615 1616

**返回值:**
1617

1618 1619 1620 1621 1622 1623
| 类型                  | 说明                                                         |
| --------------------- | ------------------------------------------------------------ |
| Promise&lt;number&gt; | 返回携带一个number的Promise。number&nbsp;为认证结果,参见[AuthenticationResult](#authenticationresultdeprecated)。 |

**示例:**

Y
youliang_1314 已提交
1624 1625 1626 1627 1628 1629 1630 1631
```js
let authenticator = userIAM_userAuth.getAuthenticator();
authenticator.execute("FACE_ONLY", "S2").then((code)=>{
    console.info("auth success");
}).catch((error)=>{
    console.error("auth fail, code = " + error);
});
```
1632 1633 1634

## AuthenticationResult<sup>(deprecated)</sup>

Y
youliang_1314 已提交
1635 1636
表示认证结果的枚举。

1637
> **说明:**
Y
youliang_1314 已提交
1638
> 从 API version 8 开始废弃,建议使用[ResultCode](#resultcodedeprecated)替代。
1639 1640 1641

**系统能力**:SystemCapability.UserIAM.UserAuth.Core

Y
youliang_1314 已提交
1642
| 名称               |   值   | 说明                       |
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
| ------------------ | ------ | -------------------------- |
| NO_SUPPORT         | -1     | 设备不支持当前的认证方式。 |
| SUCCESS            | 0      | 认证成功。                 |
| COMPARE_FAILURE    | 1      | 比对失败。                 |
| CANCELED           | 2      | 用户取消认证。             |
| TIMEOUT            | 3      | 认证超时。                 |
| CAMERA_FAIL        | 4      | 开启相机失败。             |
| BUSY               | 5      | 认证服务忙,请稍后重试。   |
| INVALID_PARAMETERS | 6      | 认证参数无效。             |
| LOCKED             | 7      | 认证失败次数过多,已锁定。 |
| NOT_ENROLLED       | 8      | 未录入认证凭据。           |
Y
youliang_1314 已提交
1654
| GENERAL_ERROR      | 100    | 其他错误。                 |