From 0e998ecf59f6bbe4c13ae614dffd3054411ccf84 Mon Sep 17 00:00:00 2001 From: youliang_1314 Date: Sat, 24 Dec 2022 15:03:54 +0800 Subject: [PATCH] update iam doc Signed-off-by: youliang_1314 --- .../apis/js-apis-useriam-userauth.md | 5 ++ .../reference/errorcodes/errorcode-useriam.md | 70 +++++++++++++++++++ 2 files changed, 75 insertions(+) diff --git a/zh-cn/application-dev/reference/apis/js-apis-useriam-userauth.md b/zh-cn/application-dev/reference/apis/js-apis-useriam-userauth.md index bcc51714fd..40aa943c1b 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-useriam-userauth.md +++ b/zh-cn/application-dev/reference/apis/js-apis-useriam-userauth.md @@ -277,9 +277,14 @@ start : () => void | -------- | ------- | | 201 | Permission verification failed. | | 401 | Incorrect parameters. | +| 12500001 | Execution 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. | **示例:** diff --git a/zh-cn/application-dev/reference/errorcodes/errorcode-useriam.md b/zh-cn/application-dev/reference/errorcodes/errorcode-useriam.md index 8c81595246..d8a1feb371 100644 --- a/zh-cn/application-dev/reference/errorcodes/errorcode-useriam.md +++ b/zh-cn/application-dev/reference/errorcodes/errorcode-useriam.md @@ -12,6 +12,20 @@ 具体参见[通用错误码](./errorcode-universal.md) +## 12500001 执行认证失败 + +**错误信息** + +Authentication failed. + +**可能原因** + +出现该错误码一般是系统内部错误,例如内存申请失败、内存拷贝出错等。 + +**处理步骤** + +重启设备,重新调用接口。 + ## 12500002 一般的操作错误 **错误信息** @@ -30,6 +44,34 @@ General operation error. 重启设备,重新调用接口。 +## 12500003 认证被取消 + +**错误信息** + +Authentication canceled. + +**可能原因** + +当前的认证操作已经被取消。 + +**处理步骤** + +重新调用认证接口,发起认证。 + +## 12500004 认证操作超时 + +**错误信息** + +Authentication timeout. + +**可能原因** + +当前的认证操作超过了设定的时限。 + +**处理步骤** + +重新调用认证接口,发起认证。 + ## 12500005 认证类型不支持 **错误信息** @@ -60,6 +102,34 @@ The authentication trust level is not supported. 检查传入的authTrustLevel是否在合理范围,如果在合理范围,则是当前的设备不支持该认证信任等级。 +## 12500007 认证服务已经繁忙 + +**错误信息** + +Authentication service is busy. + +**可能原因** + +当前已经存在某个尚未结束的认证,又发起了一次认证。 + +**处理步骤** + +稍后重新发起认证。 + +## 12500009 认证被锁定 + +**错误信息** + +Authentication is lockout. + +**可能原因** + +当前认证失败的次数超过了上限,触发防爆模式,认证被锁定。 + +**处理步骤** + +稍后重新发起一次成功的认证。 + ## 12500010 该类型的凭据没有录入 **错误信息** -- GitLab