未验证 提交 fe8b9ee0 编写于 作者: O openharmony_ci 提交者: Gitee

!11104 modify account api docs

Merge pull request !11104 from jidong/dev_102801
...@@ -97,7 +97,6 @@ createAccount(name: string, options: CreateAccountOptions, callback: AsyncCallba ...@@ -97,7 +97,6 @@ createAccount(name: string, options: CreateAccountOptions, callback: AsyncCallba
| 12300002 | Invalid name or options. | | 12300002 | Invalid name or options. |
| 12300004 | Account already exists. | | 12300004 | Account already exists. |
| 12300007 | The number of accounts reaches the upper limit. | | 12300007 | The number of accounts reaches the upper limit. |
| 12400003 | The number of custom data reaches the upper limit. |
**示例:** **示例:**
......
...@@ -190,7 +190,8 @@ setOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallbac ...@@ -190,7 +190,8 @@ setOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallbac
| 错误码ID | 错误信息| | 错误码ID | 错误信息|
| -------- | ------------------- | | -------- | ------------------- |
| 12300001 | System service exception. | | 12300001 | System service exception. |
| 12300002 | invalid accountInfo. | | 12300002 | Invalid accountInfo. |
| 12300003 | Account not found. |
**示例:** **示例:**
```js ```js
......
...@@ -220,7 +220,7 @@ checkOsAccountActivated(localId: number, callback: AsyncCallback<boolean>) ...@@ -220,7 +220,7 @@ checkOsAccountActivated(localId: number, callback: AsyncCallback<boolean>)
判断指定系统帐号是否处于激活状态。使用callback异步回调。 判断指定系统帐号是否处于激活状态。使用callback异步回调。
**需要权限:** ohos.permission.MANAGE_LOCAL_ACCOUNTS **需要权限:** ohos.permission.MANAGE_LOCAL_ACCOUNTS 或 ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS
**系统能力:** SystemCapability.Account.OsAccount **系统能力:** SystemCapability.Account.OsAccount
...@@ -309,7 +309,7 @@ checkConstraintEnabled(localId: number, constraint: string, callback: AsyncCallb ...@@ -309,7 +309,7 @@ checkConstraintEnabled(localId: number, constraint: string, callback: AsyncCallb
判断指定系统帐号是否具有指定约束。使用callback异步回调。 判断指定系统帐号是否具有指定约束。使用callback异步回调。
**需要权限:** ohos.permission.MANAGE_LOCAL_ACCOUNTS 或 ohos.permission.INTERACT_ACROSS_LOCAL_ACCOUNTS **需要权限:** ohos.permission.MANAGE_LOCAL_ACCOUNTS
**系统能力:** SystemCapability.Account.OsAccount **系统能力:** SystemCapability.Account.OsAccount
...@@ -354,7 +354,7 @@ checkConstraintEnabled(localId: number, constraint: string): Promise<boolean& ...@@ -354,7 +354,7 @@ checkConstraintEnabled(localId: number, constraint: string): Promise<boolean&
判断指定系统帐号是否具有指定约束。使用Promise异步回调。 判断指定系统帐号是否具有指定约束。使用Promise异步回调。
**需要权限:** ohos.permission.MANAGE_LOCAL_ACCOUNTS **需要权限:** ohos.permission.MANAGE_LOCAL_ACCOUNTS
**系统能力:** SystemCapability.Account.OsAccount **系统能力:** SystemCapability.Account.OsAccount
...@@ -814,7 +814,7 @@ setOsAccountName(localId: number, localName: string, callback: AsyncCallback< ...@@ -814,7 +814,7 @@ setOsAccountName(localId: number, localName: string, callback: AsyncCallback<
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
| :-------- | ------------------------- | ---- | ----------------------------------------------- | | :-------- | ------------------------- | ---- | ----------------------------------------------- |
| localId | number | 是 | 系统帐号ID。 | | localId | number | 是 | 系统帐号ID。 |
| localName | string | 是 | 帐号名,最大长度为1024。 | | localName | string | 是 | 帐号名,最大长度为1024个字符。 |
| callback | AsyncCallback<void> | 是 | 回调函数。如果设置成功,err为null,否则为错误对象。 | | callback | AsyncCallback<void> | 是 | 回调函数。如果设置成功,err为null,否则为错误对象。 |
**错误码:** **错误码:**
...@@ -4081,7 +4081,7 @@ setProperty(request: SetPropertyRequest): Promise<number>; ...@@ -4081,7 +4081,7 @@ setProperty(request: SetPropertyRequest): Promise<number>;
auth(challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array; auth(challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array;
执行认证。使用callback异步回调。 认证当前用户。使用callback异步回调。
**系统接口:** 此接口为系统接口。 **系统接口:** 此接口为系统接口。
...@@ -4139,7 +4139,7 @@ auth(challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, ...@@ -4139,7 +4139,7 @@ auth(challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel,
authUser(userId: number, challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array; authUser(userId: number, challenge: Uint8Array, authType: AuthType, authTrustLevel: AuthTrustLevel, callback: IUserAuthCallback): Uint8Array;
执行用户认证。使用callback异步回调。 认证指定用户。使用callback异步回调。
**系统接口:** 此接口为系统接口。 **系统接口:** 此接口为系统接口。
...@@ -4701,7 +4701,7 @@ getAuthInfo(callback: AsyncCallback<Array<EnrolledCredInfo>>): void; ...@@ -4701,7 +4701,7 @@ getAuthInfo(callback: AsyncCallback<Array<EnrolledCredInfo>>): void;
| 参数名 | 类型 | 必填 | 说明 | | 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------------------ | ---- | --------------------------------------------- | | -------- | ------------------------------------------------------------------------ | ---- | --------------------------------------------- |
| callback | AsyncCallback<Array<[EnrolledCredInfo](#enrolledcredinfo8)>> | 是 | 回调函数。如果成功,err为null,data为当前用户指定类型的所有已注册凭据信息;否则为错误对象。| | callback | AsyncCallback<Array<[EnrolledCredInfo](#enrolledcredinfo8)>> | 是 | 回调函数。如果成功,err为null,data为当前用户的所有已注册凭据信息;否则为错误对象。|
**错误码:** **错误码:**
......
...@@ -325,6 +325,7 @@ The auth type is not supported. ...@@ -325,6 +325,7 @@ The auth type is not supported.
**错误信息** **错误信息**
The auth type does not exist. The auth type does not exist.
**可能原因** **可能原因**
该错误码表示认证类型不存在,可能原因如下: 该错误码表示认证类型不存在,可能原因如下:
...@@ -418,6 +419,7 @@ The auth service is busy. ...@@ -418,6 +419,7 @@ The auth service is busy.
**错误信息** **错误信息**
The account authenticator service does not exist. The account authenticator service does not exist.
**可能原因** **可能原因**
该错误码表示认证服务不存在,可能原因如下: 该错误码表示认证服务不存在,可能原因如下:
...@@ -437,6 +439,7 @@ The account authenticator service does not exist. ...@@ -437,6 +439,7 @@ The account authenticator service does not exist.
**错误信息** **错误信息**
The account authenticator service works abnormally. The account authenticator service works abnormally.
**可能原因** **可能原因**
该错误码表示帐号认证服务异常,可能原因如下: 该错误码表示帐号认证服务异常,可能原因如下:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册