提交 7894449d 编写于 作者: C cc_ggboy

account ArkTs告警整改

Signed-off-by: Ncc_ggboy <chenweimin8@huawei.com>
上级 fd9d4215
...@@ -1509,7 +1509,7 @@ auth(name: string, owner: string, authType: string, options: {[key: string]: Obj ...@@ -1509,7 +1509,7 @@ auth(name: string, owner: string, authType: string, options: {[key: string]: Obj
} }
let options: Record<string, Object> = { let options: Record<string, Object> = {
password: 'xxxx', 'password': 'xxxx',
}; };
try { try {
appAccountManager.auth('LiSi', 'com.example.accountjsdemo', 'getSocialData', options, { appAccountManager.auth('LiSi', 'com.example.accountjsdemo', 'getSocialData', options, {
...@@ -4919,7 +4919,7 @@ onRequestRedirected: (request: Want) =&gt; void ...@@ -4919,7 +4919,7 @@ onRequestRedirected: (request: Want) =&gt; void
} }
auth(name: string, authType: string, auth(name: string, authType: string,
options: { [key: string]: Object }, callback: account_appAccount.AuthCallback) { options: Record<string, Object>, callback: account_appAccount.AuthCallback) {
let result: account_appAccount.AuthResult = { let result: account_appAccount.AuthResult = {
account: { account: {
name: 'Lisi', name: 'Lisi',
...@@ -5020,7 +5020,7 @@ onRequestRedirected: (request: Want) =&gt; void ...@@ -5020,7 +5020,7 @@ onRequestRedirected: (request: Want) =&gt; void
```js ```js
class MyAuthenticator extends account_appAccount.Authenticator { class MyAuthenticator extends account_appAccount.Authenticator {
addAccountImplicitly(authType: string, callerBundleName: string, addAccountImplicitly(authType: string, callerBundleName: string,
options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { options: Record<string, Object>, callback: account_appAccount.AuthenticatorCallback) {
let want: Want = { let want: Want = {
bundleName: 'com.example.accountjsdemo', bundleName: 'com.example.accountjsdemo',
abilityName: 'com.example.accountjsdemo.LoginAbility', abilityName: 'com.example.accountjsdemo.LoginAbility',
...@@ -5029,7 +5029,7 @@ onRequestRedirected: (request: Want) =&gt; void ...@@ -5029,7 +5029,7 @@ onRequestRedirected: (request: Want) =&gt; void
} }
authenticate(name: string, authType: string, callerBundleName: string, authenticate(name: string, authType: string, callerBundleName: string,
options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { options: Record<string, Object>, callback: account_appAccount.AuthenticatorCallback) {
callback.onResult(account_appAccount.ResultCode.SUCCESS, { callback.onResult(account_appAccount.ResultCode.SUCCESS, {
name: name, name: name,
authType: authType, authType: authType,
...@@ -5192,11 +5192,9 @@ getRemoteObject(): rpc.RemoteObject; ...@@ -5192,11 +5192,9 @@ getRemoteObject(): rpc.RemoteObject;
**示例:** **示例:**
```js ```js
import rpc from '@ohos.rpc';
class MyAuthenticator extends account_appAccount.Authenticator { class MyAuthenticator extends account_appAccount.Authenticator {
addAccountImplicitly(authType: string, callerBundleName: string, addAccountImplicitly(authType: string, callerBundleName: string,
options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { options: Record<string, Object>, callback: account_appAccount.AuthenticatorCallback) {
let want: Want = { let want: Want = {
bundleName: 'com.example.accountjsdemo', bundleName: 'com.example.accountjsdemo',
abilityName: 'com.example.accountjsdemo.LoginAbility', abilityName: 'com.example.accountjsdemo.LoginAbility',
...@@ -5205,7 +5203,7 @@ getRemoteObject(): rpc.RemoteObject; ...@@ -5205,7 +5203,7 @@ getRemoteObject(): rpc.RemoteObject;
} }
authenticate(name: string, authType: string, callerBundleName: string, authenticate(name: string, authType: string, callerBundleName: string,
options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { options: Record<string, Object>, callback: account_appAccount.AuthenticatorCallback) {
callback.onResult(account_appAccount.ResultCode.SUCCESS, { callback.onResult(account_appAccount.ResultCode.SUCCESS, {
name: name, name: name,
authType: authType, authType: authType,
......
...@@ -5600,14 +5600,14 @@ getAccountInfo(options: GetDomainAccountInfoOptions, callback: AsyncCallback&lt; ...@@ -5600,14 +5600,14 @@ getAccountInfo(options: GetDomainAccountInfoOptions, callback: AsyncCallback&lt;
| 错误码ID | 错误信息 | | 错误码ID | 错误信息 |
| -------- | --------------------------- | | -------- | --------------------------- |
| 12300001 | System service exception. | | 12300001 | System service exception. |
| 12300002 | Invalid domainAccountInfo. | | 12300003 | Account not found. |
| 12300013 | Network exception. | | 12300013 | Network exception. |
| 12300111 | Operation timeout. | | 12300111 | Operation timeout. |
**示例:** **示例:**
```js ```js
import { BusinessError } from '@ohos.base'; import { BusinessError } from '@ohos.base';
let domainAccountInfo: account_osAccount.DomainAccountInfo = { let domainAccountInfo: account_osAccount.GetDomainAccountInfoOptions = {
domain: 'CHINA', domain: 'CHINA',
accountName: 'zhangsan' accountName: 'zhangsan'
} }
...@@ -5654,14 +5654,14 @@ getAccountInfo(options: GetDomainAccountInfoOptions): Promise&lt;DomainAccountIn ...@@ -5654,14 +5654,14 @@ getAccountInfo(options: GetDomainAccountInfoOptions): Promise&lt;DomainAccountIn
| 错误码ID | 错误信息 | | 错误码ID | 错误信息 |
| -------- | --------------------------- | | -------- | --------------------------- |
| 12300001 | System service exception. | | 12300001 | System service exception. |
| 12300002 | Invalid domainAccountInfo. | | 12300003 | Account not found. |
| 12300013 | Network exception. | | 12300013 | Network exception. |
| 12300111 | Operation timeout. | | 12300111 | Operation timeout. |
**示例:** **示例:**
```js ```js
import { BusinessError } from '@ohos.base'; import { BusinessError } from '@ohos.base';
let domainAccountInfo: account_osAccount.DomainAccountInfo = { let domainAccountInfo: account_osAccount.GetDomainAccountInfoOptions = {
domain: 'CHINA', domain: 'CHINA',
accountName: 'zhangsan' accountName: 'zhangsan'
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册