js-apis-appAccount.md 63.2 KB
Newer Older
Z
zhaoyuan17 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  	应用帐号管理

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。


## 导入模块

```
import account_appAccount from '@ohos.account.appAccount';
```


J
jidong 已提交
14 15 16 17 18
## 系统能力

SystemCapability.Account.AppAccount


Z
zhaoyuan17 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
## account_appAccount.createAppAccountManager

createAppAccountManager(): AppAccountManager;

应用帐号管理:获取应用帐号模块对象。

- 返回值:
  | 类型 | 说明 |
  | -------- | -------- |
  | AppAccountManager | 获取应用帐号模块的实例。 |

- 示例:
  ```
  var appAccountManager = account.createAppAccountManager();
  ```

## AppAccountManager

管理应用帐号模块的实例。

### addAccount

addAccount(name: string, callback: AsyncCallback<void>): void;

将此应用的帐号名添加到帐号管理服务中,使用callback回调异步返回结果。

需要权限:无。

- 参数:

  | 参数名   | 类型                | 必填 | 说明                                       |
  | -------- | ------------------- | ---- | ------------------------------------------ |
  | name     | string              | 是   | 要添加的应用帐户的名称。                   |
  | callback | AsyncCallback<void> | 是   | 将此应用的帐号名添加到帐号管理服务的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.addAccount("WangWu", (err) => { 
      console.log("addAccount err: " + JSON.stringify(err));
  });
  ```

### addAccount

Z
zhaoyuan17 已提交
65
addAccount(name: string, extraInfo: string, callback: AsyncCallback<void>): void;
Z
zhaoyuan17 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91

将此应用程序的帐号名和额外信息添加到帐号管理服务中,使用callback回调异步返回结果。

需要权限:无。

- 参数:

  | 参数名    | 类型                | 必填 | 说明                                                         |
  | --------- | ------------------- | ---- | ------------------------------------------------------------ |
  | name      | string              | 是   | 要添加的应用帐户的名称。                                     |
  | extraInfo | string              | 是   | 要添加的应用帐户的额外信息(例如token等),额外的信息不能是应用帐号的敏感信息。 |
  | callback  | AsyncCallback<void> | 是   | 将此应用程序的帐号名和额外信息添加到帐号管理服务中的回调。   |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.addAccount("LiSi", "token101", (err) => { 
      console.log("addAccount err: " + JSON.stringify(err));
  });
  ```



### addAccount

Z
zhaoyuan17 已提交
92
addAccount(name: string, extraInfo?: string): Promise<void>;
Z
zhaoyuan17 已提交
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 120 121

将此应用的帐号名或额外信息添加到帐号管理服务中,使用Promise方式异步返回结果。

需要权限:无。

- 参数:

  | 参数名    | 类型   | 必填 | 说明                                                         |
  | --------- | ------ | ---- | ------------------------------------------------------------ |
  | name      | string | 是   | 要添加的应用帐户的名称。                                     |
  | extraInfo | string | 是   | 要添加的应用帐户的额外信息,额外的信息不能是应用帐号的敏感信息。 |

- 返回值:

  | 类型          | 说明                               |
  | ------------- | ---------------------------------- |
  | Promise<void> | romise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.addAccount("LiSi", "token101").then(()=> { 
      console.log('addAccount Success');
  }).catch((err) => {
      console.log("addAccount err: "  + JSON.stringify(err));
  });
  ```

J
jidong 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
### addAccountImplicitly<sup>8+</sup>

addAccountImplicitly(owner: string, authType: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;

根据指定的帐号所有者、鉴权类型和可选项,隐式地添加应用帐号,并使用callback回调异步返回结果。

需要权限:无。

- 参数:

  | 参数名    | 类型                  | 必填 | 说明                        |
  | -------- | --------------------- | ---  | --------------------------  |
  | owner    | string                | 是   | 要添加的应用帐户的所有者包名。 |
  | authType | string                | 是   | 要添加的应用帐户的鉴权类型。   |
  | options  | {[key: string]: any}  | 是   | 鉴权所需要的可选项。          |
  | callback | AuthenticatorCallback | 是   | 认证器回调,用于返回鉴权结果。 |

- 示例:

  ```
  import featureAbility from '@ohos.ability.featureAbility';

  function onResultCallback(code, result) {
      console.log("resultCode: "  + code);
      console.log("result: "  + JSON.stringify(result));
  }

  function onRequestRedirectedCallback(request) {
      let abilityStartSetting = {want: request};
      featureAbility.startAbility(abilityStartSetting, (err)=>{
          console.log("startAbility err: " + JSON.stringify(err));
      });
  }

  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.addAccountImplicitly("LiSi", "readAge", {}, {
      onResult: onResultCallback,
      onRequestRedirected: onRequestRedirectedCallback
  });
  ```

Z
zhaoyuan17 已提交
163 164
### deleteAccount

Z
zhaoyuan17 已提交
165
deleteAccount(name: string, callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186

从帐号管理服务中删除应用帐号,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                | 必填 | 说明                               |
  | -------- | ------------------- | ---- | ---------------------------------- |
  | name     | string              | 是   | 要删除的应用帐户的名称。           |
  | callback | AsyncCallback&lt;void&gt; | 是   | 帐号管理服务中删除应用帐号的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.deleteAccount("ZhaoLiu", (err) => { 
      console.log("deleteAccount err: " + JSON.stringify(err));
   });
  ```

### deleteAccount

Z
zhaoyuan17 已提交
187
deleteAccount(name: string): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215

从帐号管理服务中删除应用帐号,使用Promise方式异步返回结果。

- 参数:

  | 参数名 | 类型   | 必填 | 说明                     |
  | ------ | ------ | ---- | ------------------------ |
  | name   | string | 是   | 要删除的应用帐户的名称。 |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.deleteAccount("ZhaoLiu").then(() => { 
        console.log('deleteAccount Success');
   }).catch((err) => {
      console.log("deleteAccount err: "  + JSON.stringify(err));
  });
  ```

### disableAppAccess

Z
zhaoyuan17 已提交
216
disableAppAccess(name: string, bundleName: string, callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231

禁止指定第三方应用帐户的名称访问指定包名称的第三方应用,使用callback回调异步返回结果。

- 参数:

  | 参数名     | 类型                | 必填 | 说明                                                         |
  | ---------- | ------------------- | ---- | ------------------------------------------------------------ |
  | name       | string              | 是   | 要禁用访问的第三方应用帐户的名称。                           |
  | bundleName | string              | 是   | 第三方应用的包名。                                           |
  | callback   | AsyncCallback&lt;void&gt; | 是   | 禁止指定第三方应用帐户的名称访问指定包名称的第三方应用的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
Z
zengyawen 已提交
232
  appAccountManager.disableAppAccess("ZhangSan", "com.example.ohos.accountjsdemo", (err) => { 
Z
zhaoyuan17 已提交
233 234 235 236 237 238
      console.log("disableAppAccess err: " + JSON.stringify(err));
  });
  ```

### disableAppAccess

Z
zhaoyuan17 已提交
239
disableAppAccess(name: string, bundleName: string): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259

禁止指定第三方应用帐户的名称访问指定包名称的第三方应用,使用Promise方式异步返回结果。

- 参数:

  | 参数名     | 类型   | 必填 | 说明                               |
  | ---------- | ------ | ---- | ---------------------------------- |
  | name       | string | 是   | 要禁用访问的第三方应用帐户的名称。 |
  | bundleName | string | 是   | 第三方应用的包名。                 |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
Z
zengyawen 已提交
260
  appAccountManager.disableAppAccess("ZhangSan", "com.example.ohos.accountjsdemo").then(() => { 
Z
zhaoyuan17 已提交
261 262 263 264 265 266 267 268
      console.log('disableAppAccess Success');
  }).catch((err) => {
      console.log("disableAppAccess err: "  + JSON.stringify(err));
  });
  ```

### enableAppAccess

Z
zhaoyuan17 已提交
269
enableAppAccess(name: string, bundleName: string, callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284

允许指定第三方应用帐户的名称访问指定包名称的第三方应用,使用callback回调异步返回结果。

- 参数:

  | 参数名     | 类型                | 必填 | 说明                                                         |
  | ---------- | ------------------- | ---- | ------------------------------------------------------------ |
  | name       | string              | 是   | 应用帐号名称。                                               |
  | bundleName | string              | 是   | 第三方应用的包名。                                           |
  | callback   | AsyncCallback&lt;void&gt; | 是   | 允许指定第三方应用帐户的名称访问指定包名称的第三方应用的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
Z
zengyawen 已提交
285
  appAccountManager.enableAppAccess("ZhangSan", "com.example.ohos.accountjsdemo", (err) => { 
Z
zhaoyuan17 已提交
286 287 288 289 290 291
      console.log("enableAppAccess: " + JSON.stringify(err));
   });
  ```

### enableAppAccess

Z
zhaoyuan17 已提交
292
enableAppAccess(name: string, bundleName: string): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311

允许指定第三方应用帐户的名称访问指定包名称的第三方应用,使用Promise方式异步返回结果。

- 参数:

  | 参数名     | 类型   | 必填 | 说明               |
  | ---------- | ------ | ---- | ------------------ |
  | name       | string | 是   | 应用帐号名称。     |
  | bundleName | string | 是   | 第三方应用的包名。 |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
Z
zengyawen 已提交
312
  app_account_instance.enableAppAccess("ZhangSan", "com.example.ohos.accountjsdemo").then(() => { 
Z
zhaoyuan17 已提交
313 314 315 316 317 318 319 320
       console.log('enableAppAccess Success');
  }).catch((err) => {
      console.log("enableAppAccess err: "  + JSON.stringify(err));
  });
  ```

### checkAppAccountSyncEnable

Z
zhaoyuan17 已提交
321
checkAppAccountSyncEnable(name: string, callback: AsyncCallback&lt;boolean&gt;): void;
Z
zhaoyuan17 已提交
322 323 324

检查指定应用帐号是否允许应用数据同步,使用callback回调异步返回结果。

Z
zhaoyuan17 已提交
325 326
需要权限:ohos.permission.DISTRIBUTED_DATASYNC,系统应用可用。

Z
zhaoyuan17 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
- 参数:

  | 参数名   | 类型                   | 必填 | 说明                                         |
  | -------- | ---------------------- | ---- | -------------------------------------------- |
  | name     | string                 | 是   | 应用帐号名称。                               |
  | callback | AsyncCallback&lt;boolean&gt; | 是   | 检查指定应用帐号是否允许应用数据同步的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.checkAppAccountSyncEnable("ZhangSan", (err, result) => { 
      console.log("checkAppAccountSyncEnable err: " + JSON.stringify(err));
      console.log('checkAppAccountSyncEnable result: ' + result);
  });
  ```

### checkAppAccountSyncEnable

Z
zhaoyuan17 已提交
346
checkAppAccountSyncEnable(name: string): Promise&lt;boolean&gt;;
Z
zhaoyuan17 已提交
347 348 349

检查指定应用帐号是否允许应用数据同步,使用Promise方式异步返回结果。

Z
zhaoyuan17 已提交
350 351
需要权限:ohos.permission.DISTRIBUTED_DATASYNC,系统应用可用。

Z
zhaoyuan17 已提交
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
- 参数:

  | 参数名 | 类型   | 必填 | 说明           |
  | ------ | ------ | ---- | -------------- |
  | name   | string | 是   | 应用帐号名称。 |

- 返回值:

  | 类型             | 说明                                |
  | :--------------- | :---------------------------------- |
  | Promise&lt;boolean&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.checkAppAccountSyncEnable("ZhangSan").then((data) => { 
      console.log('checkAppAccountSyncEnable, result: ' + data);
  }).catch((err) => {
      console.log("checkAppAccountSyncEnable err: "  + JSON.stringify(err));
  });
  ```

### setAccountCredential

Z
zhaoyuan17 已提交
377
setAccountCredential(name: string, credentialType: string, credential: string,callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

设置此应用程序帐号的凭据,使用callback回调异步返回结果。

- 参数:

  | 参数名         | 类型                | 必填 | 说明                         |
  | -------------- | ------------------- | ---- | ---------------------------- |
  | name           | string              | 是   | 应用程序帐户的名称。         |
  | credentialType | string              | 是   | 要设置的凭据的类型。         |
  | credential     | string              | 是   | 要设置的凭据。               |
  | callback       | AsyncCallback&lt;void&gt; | 是   | 设置此应用帐号的凭据的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setAccountCredential("ZhangSan", "credentialType001", "credential001", (err) => { 
      console.log("setAccountCredential err: " + JSON.stringify(err));
  });
  ```

### setAccountCredential

Z
zhaoyuan17 已提交
401
setAccountCredential(name: string, credentialType: string, credential: string): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
402 403 404 405 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

设置此应用程序帐号的凭据,使用Promise方式异步返回结果。

- 参数:

  | 参数名         | 类型   | 必填 | 说明                 |
  | -------------- | ------ | ---- | -------------------- |
  | name           | string | 是   | 应用帐户的名称。     |
  | credentialType | string | 是   | 要设置的凭据的类型。 |
  | credential     | string | 是   | 要设置的凭据。       |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setAccountCredential("ZhangSan", "credentialType001", "credential001").then(() => { 
      console.log('setAccountCredential Success');
  }).catch((err) => {
      console.log("setAccountCredential err: "  + JSON.stringify(err));
  });
  ```

### setAccountExtraInfo

Z
zhaoyuan17 已提交
432
setAccountExtraInfo(name: string, extraInfo: string, callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454

设置此应用程序帐号的额外信息,使用callback回调异步返回结果。

- 参数:

  | 参数名    | 类型                | 必填 | 说明                             |
  | --------- | ------------------- | ---- | -------------------------------- |
  | name      | string              | 是   | 应用帐户的名称。                 |
  | extraInfo | string              | 是   | 要设置的额外信息。               |
  | callback  | AsyncCallback&lt;void&gt; | 是   | 设置此应用帐号的额外信息的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setAccountExtraInfo("ZhangSan", "Tk002", (err) => { 
      console.log("setAccountExtraInfo err: " + JSON.stringify(err));
  });
  ```

### setAccountExtraInfo

Z
zhaoyuan17 已提交
455
setAccountExtraInfo(name: string, extraInfo: string): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484

设置此应用程序帐号的额外信息,使用Promise方式异步返回结果。

- 参数:

  | 参数名    | 类型   | 必填 | 说明               |
  | --------- | ------ | ---- | ------------------ |
  | name      | string | 是   | 应用帐户的名称。   |
  | extraInfo | string | 是   | 要设置的额外信息。 |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setAccountExtraInfo("ZhangSan", "Tk002").then(() => { 
      console.log('setAccountExtraInfo Success');
  }).catch((err) => {
      console.log("setAccountExtraInfo err: "  + JSON.stringify(err));
  });
  ```

### setAppAccountSyncEnable

Z
zhaoyuan17 已提交
485
setAppAccountSyncEnable(name: string, isEnable: boolean, callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
486 487 488

设置指定的应用程序帐号是否允许应用程序数据同步,使用callback回调异步返回结果。

Z
zhaoyuan17 已提交
489 490
需要权限:ohos.permission.DISTRIBUTED_DATASYNC,系统应用可用。

Z
zhaoyuan17 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
- 参数:

  | 参数名   | 类型                | 必填 | 说明                                               |
  | -------- | ------------------- | ---- | -------------------------------------------------- |
  | name     | string              | 是   | 应用帐户的名称。                                   |
  | isEnable | boolean             | 是   | 是否允许应用数据同步。                             |
  | callback | AsyncCallback&lt;void&gt; | 是   | 设置指定的应用帐号是否允许应用程序数据同步的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setAppAccountSyncEnable("ZhangSan", true, (err) => { 
      console.log("setAppAccountSyncEnable err: " + JSON.stringify(err));
  });
  ```

### setAppAccountSyncEnable

Z
zhaoyuan17 已提交
510
setAppAccountSyncEnable(name: string, isEnable: boolean): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
511 512 513

设置指定的应用程序帐号是否允许应用程序数据同步,使用Promise方式异步返回结果。

Z
zhaoyuan17 已提交
514 515
需要权限:ohos.permission.DISTRIBUTED_DATASYNC,系统应用可用。

Z
zhaoyuan17 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
- 参数:

  | 参数名   | 类型    | 必填 | 说明                   |
  | -------- | ------- | ---- | ---------------------- |
  | name     | string  | 是   | 应用帐户的名称。       |
  | isEnable | boolean | 是   | 是否允许应用数据同步。 |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager .setAppAccountSyncEnable("ZhangSan", true).then(() => { 
      console.log('setAppAccountSyncEnable Success');
  }).catch((err) => {
      console.log("setAppAccountSyncEnable err: "  + JSON.stringify(err));
  });
  ```

### setAssociatedData

Z
zhaoyuan17 已提交
542
setAssociatedData(name: string, key: string, value: string, callback: AsyncCallback&lt;void&gt;): void;
Z
zhaoyuan17 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564

设置与此应用程序帐号关联的数据,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                | 必填 | 说明                               |
  | -------- | ------------------- | ---- | ---------------------------------- |
  | name     | string              | 是   | 应用帐户的名称。                   |
  | key      | string              | 是   | 要设置的数据的键,密钥可以自定义。 |
  | value    | string              | 是   | 要设置的数据的值。                 |
  | callback | AsyncCallback&lt;void&gt; | 是   | 设置与此应用帐号关联的数据的回调。 |

- 示例:

  ```
  app_account_instance.setAssociatedData("ZhangSan", "k001", "v001", (err) => { 
      console.log("setAssociatedData err: " + JSON.stringify(err));
  });
  ```

### setAssociatedData

Z
zhaoyuan17 已提交
565
setAssociatedData(name: string, key: string, value: string): Promise&lt;void&gt;;
Z
zhaoyuan17 已提交
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

设置与此应用程序帐号关联的数据,使用Promise方式异步返回结果。

- 参数:

  | 参数名 | 类型   | 必填 | 说明                               |
  | ------ | ------ | ---- | ---------------------------------- |
  | name   | string | 是   | 应用帐户的名称。                   |
  | key    | string | 是   | 要设置的数据的键,密钥可以自定义。 |
  | value  | string | 是   | 要设置的数据的值。                 |

- 返回值:

  | 类型          | 说明                                |
  | :------------ | :---------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setAssociatedData("ZhangSan", "k001", "v001").then(() => { 
      console.log('setAssociatedData Success');
  }).catch((err) => {
      console.log("setAssociatedData err: "  + JSON.stringify(err));
  });
  ```

### getAccountCredential

Z
zhaoyuan17 已提交
596
getAccountCredential(name: string, credentialType: string, callback: AsyncCallback&lt;string&gt;): void;
Z
zhaoyuan17 已提交
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619

获取此应用帐号的凭据,使用callback回调异步返回结果。

- 参数:

  | 参数名         | 类型                  | 必填 | 说明                         |
  | -------------- | --------------------- | ---- | ---------------------------- |
  | name           | string                | 是   | 应用帐号名称。               |
  | credentialType | string                | 是   | 要获取的凭据的类型。         |
  | callback       | AsyncCallback&lt;string&gt; | 是   | 获取此应用帐号的凭据的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAccountCredential("ZhangSan", "credentialType001", (err, result) => { 
      console.log("getAccountCredential err: " + JSON.stringify(err));
      console.log('getAccountCredential result: ' + result);
  });
  ```

### getAccountCredential

Z
zhaoyuan17 已提交
620
getAccountCredential(name: string, credentialType: string): Promise&lt;string&gt;;
Z
zhaoyuan17 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649

获取此应用程序帐号的凭据,使用Promise方式异步返回结果。

- 参数:

  | 参数名         | 类型   | 必填 | 说明                 |
  | -------------- | ------ | ---- | -------------------- |
  | name           | string | 是   | 应用帐号名称。       |
  | credentialType | string | 是   | 要获取的凭据的类型。 |

- 返回值:

  | 类型            | 说明                                |
  | :-------------- | :---------------------------------- |
  | Promise&lt;string&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAccountCredential("ZhangSan", "credentialType001").then((data) => { 
      console.log('getAccountCredential, result: ' + data);
  }).catch((err) => {
      console.log("getAccountCredential err: "  + JSON.stringify(err));
  });
  ```

### getAccountExtraInfo

Z
zhaoyuan17 已提交
650
getAccountExtraInfo(name: string, callback: AsyncCallback&lt;string&gt;): void;
Z
zhaoyuan17 已提交
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672

获取此应用帐号的额外信息,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                  | 必填 | 说明                             |
  | -------- | --------------------- | ---- | -------------------------------- |
  | name     | string                | 是   | 应用帐号名称。                   |
  | callback | AsyncCallback&lt;string&gt; | 是   | 获取此应用帐号的额外信息的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAccountExtraInfo("ZhangSan", (err, result) => { 
      console.log("getAccountExtraInfo err: " + JSON.stringify(err));
      console.log('getAccountExtraInfo result: ' + result);
  });
  ```

### getAccountExtraInfo

Z
zhaoyuan17 已提交
673
getAccountExtraInfo(name: string): Promise&lt;string&gt;;
Z
zhaoyuan17 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701

获取此应用程序帐号的额外信息,使用Promise方式异步返回结果。

- 参数:

  | 参数名 | 类型   | 必填 | 说明           |
  | ------ | ------ | ---- | -------------- |
  | name   | string | 是   | 应用帐号名称。 |

- 返回值:

  | 类型            | 说明                                |
  | :-------------- | :---------------------------------- |
  | Promise&lt;string&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAccountExtraInfo("ZhangSan").then((data) => { 
      console.log('getAccountExtraInfo, result: ' + data);
  }).catch((err) => {
      console.log("getAccountExtraInfo err: "  + JSON.stringify(err));
  });
  ```

### getAssociatedData

Z
zhaoyuan17 已提交
702
getAssociatedData(name: string, key: string, callback: AsyncCallback&lt;string&gt;): void;
Z
zhaoyuan17 已提交
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725

获取与此应用程序帐号关联的数据,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                  | 必填 | 说明                               |
  | -------- | --------------------- | ---- | ---------------------------------- |
  | name     | string                | 是   | 应用帐号名称。                     |
  | key      | string                | 是   | 要获取的数据的key。                |
  | callback | AsyncCallback&lt;string&gt; | 是   | 获取与此应用帐号关联的数据的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAssociatedData("ZhangSan", "k001", (err, result) => { 
      console.log("getAssociatedData err: " + JSON.stringify(err));
      console.log('getAssociatedData result: ' + result);
  });
  ```

### getAssociatedData

Z
zhaoyuan17 已提交
726
getAssociatedData(name: string, key: string): Promise&lt;string&gt;;
Z
zhaoyuan17 已提交
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759

获取与此应用程序帐号关联的数据,使用Promise方式异步返回结果。

- 参数:

  | 参数名 | 类型   | 必填 | 说明                |
  | ------ | ------ | ---- | ------------------- |
  | name   | string | 是   | 应用帐号名称。      |
  | key    | string | 是   | 要获取的数据的key。 |

- 返回值:

  | 类型            | 说明                                |
  | :-------------- | :---------------------------------- |
  | Promise&lt;string&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAssociatedData("ZhangSan", "k001").then((data) => { 
       console.log('getAssociatedData: ' + data);
  }).catch((err) => {
      console.log("getAssociatedData err: "  + JSON.stringify(err));
  });
  ```

### getAllAccessibleAccounts

getAllAccessibleAccounts(callback: AsyncCallback&lt;Array&lt;AppAccountInfo&gt;&gt;): void;

获取全部应用已授权帐号信息。

L
lichenchen 已提交
760
需要权限:ohos.permission.GET_ALL_APP_ACCOUNTS,系统应用可用。
Z
zhaoyuan17 已提交
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783

- 参数:

  | 参数名   | 类型                                 | 必填 | 说明             |
  | -------- | ------------------------------------ | ---- | ---------------- |
  | callback | AsyncCallback&lt;Array&lt;AppAccountInfo&gt;&gt; | 是   | 应用帐号信息列表 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAllAccessibleAccounts((err, data)=>{
  	console.debug("getAllAccessibleAccounts err:" + JSON.stringify(err));
  	console.debug("getAllAccessibleAccounts data:" + JSON.stringify(data));
  });
  ```

### getAllAccessibleAccounts

getAllAccessibleAccounts(): Promise&lt;Array&lt;AppAccountInfo&gt;&gt;;

获取全部应用已授权帐号信息。

L
lichenchen 已提交
784
需要权限:ohos.permission.GET_ALL_APP_ACCOUNTS,系统应用可用。
Z
zhaoyuan17 已提交
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808

- 参数:

  | 类型                           | 说明                                |
  | ------------------------------ | ----------------------------------- |
  | Promise&lt;Array&lt;AppAccountInfo&gt;&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAllAccessibleAccounts().then((data) => { 
       console.log('getAllAccessibleAccounts: ' + data);
  }).catch((err) => {
      console.log("getAllAccessibleAccounts err: "  + JSON.stringify(err));
  });
  ```

### getAllAccounts

getAllAccounts(owner: string, callback: AsyncCallback&lt;Array&lt;AppAccountInfo&gt;&gt;): void;

获取指定应用全部帐号信息。

L
lichenchen 已提交
809
需要权限:ohos.permission.GET_ALL_APP_ACCOUNTS,系统应用可用。
Z
zhaoyuan17 已提交
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834

- 参数:

  | 参数名   | 类型                                 | 必填 | 说明             |
  | -------- | ------------------------------------ | ---- | ---------------- |
  | owner    | string                               | 是   | 应用包名称       |
  | callback | AsyncCallback&lt;Array&lt;AppAccountInfo&gt;&gt; | 是   | 应用帐号信息列表 |

- 示例:

  ```
  const appAccountManager = account.createAppAccountManager();
  const selfBundle = "com.example.actsgetallaaccounts";
  appAccountManager.getAllAccounts(selfBundle, (err, data)=>{
  	console.debug("getAllAccounts err:" + JSON.stringify(err));
  	console.debug("getAllAccounts data:" + JSON.stringify(data));
  });
  ```

### getAllAccounts

getAllAccounts(owner: string): Promise&lt;Array&lt;AppAccountInfo&gt;&gt;;

获取指定应用全部帐号信息。

L
lichenchen 已提交
835
需要权限:ohos.permission.GET_ALL_APP_ACCOUNTS,系统应用可用。
Z
zhaoyuan17 已提交
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910

- 参数:

  | 参数名 | 类型   | 必填 | 说明       |
  | ------ | ------ | ---- | ---------- |
  | owner  | string | 是   | 应用包名称 |

- 参数:

  | 类型                           | 说明                                |
  | ------------------------------ | ----------------------------------- |
  | Promise&lt;Array&lt;AppAccountInfo&gt;&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  const selfBundle = "com.example.actsgetallaaccounts";
  appAccountManager.getAllAccounts(selfBundle).then((data) => { 
       console.log('getAllAccounts: ' + data);
  }).catch((err) => {
      console.log("getAllAccounts err: "  + JSON.stringify(err));
  });
  ```

### on('change')

on(type: 'change', owners: Array&lt;string&gt;, callback: Callback&lt;Array&lt;AppAccountInfo&gt;&gt;): void;

订阅指定帐号所有者的帐户变更事件,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                            | 必填 | 说明                                                         |
  | -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
  | type     | 'change'                        | 是   | 关于帐户更改事件,当帐户所有者更新帐户时,订阅者将收到通知。 |
  | owners   | Array&lt;string&gt;                   | 是   | 指示帐户的所有者。                                           |
  | callback | Callback&lt;Array&lt;AppAccountInfo&gt;&gt; | 是   | 订阅指定帐号所有者的帐户变更事件的回调。                     |

- 示例:

  ```
  const appAccountManager = account.createAppAccountManager();
  function changeOnCallback(data){
  	console.debug("receive change data:" + JSON.stringify(data));
  }
  try{
  	appAccountManager.on('change', ["com.example.actsaccounttest"], changeOnCallback);
  }
  catch(err){
  	console.error("on accountOnOffDemo err:" + JSON.stringify(err));
  }
  ```

### off('change')

off(type: 'change', callback?: Callback&lt;void&gt;): void;

取消订阅帐号事件,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                 | 必填 | 说明                     |
  | -------- | -------------------- | ---- | ------------------------ |
  | type     | 'change'             | 是   | 关于帐户更改事件。       |
  | callback | Callback&lt;void&gt; | 否   | 取消订阅帐号事件的回调。 |

- 示例:

  ```
  const appAccountManager = account.createAppAccountManager();
  function changeOnCallback(data){
  	console.debug("receive change data:" + JSON.stringify(data));
  	appAccountManager.off('change', function(){
  		console.debug("off finish");
Z
zengyawen 已提交
911
  	})
Z
zhaoyuan17 已提交
912 913 914 915 916 917 918 919 920
  }
  try{
  	appAccountManager.on('change', ["com.example.actsaccounttest"], changeOnCallback);
  }
  catch(err){
  	console.error("on accountOnOffDemo err:" + JSON.stringify(err));
  }
  ```

J
jidong 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 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 1002 1003 1004 1005 1006 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 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
### authenticate<sup>8+</sup>

authenticate(name: string, owner: string, authType: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;

鉴权应用帐户以获取OAuth令牌,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                   | 必填 | 说明                        |
  | -------- | --------------------- | ---- | --------------------------- |
  | name     | string                | 是   | 要鉴权的应用帐户的名称。      |
  | owner    | string                | 是   | 要鉴权的应用帐户的所有者包名。 |
  | authType | string                | 是   | 鉴权类型。                   |
  | options  | {[key: string]: any}  | 是   | 鉴权所需的可选项。            |
  | callback | AuthenticatorCallback | 是   | 认证器回调,用于返回鉴权结果。 |

- 示例:

  ```
  import featureAbility from '@ohos.ability.featureAbility';

  function onResultCallback(code, result) {
      console.log("resultCode: "  + code);
      console.log("result: "  + JSON.stringify(result));
  }

  function onRequestRedirectedCallback(request) {
      let abilityStartSetting = {want: request};
      featureAbility.startAbility(abilityStartSetting, (err)=>{
          console.log("startAbility err: " + JSON.stringify(err));
      });
  }

  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.authenticate("LiSi", "com.example.ohos.accountjsdemo", "readAge", {}, {
    onResult: onResultCallback,
    onRequestRedirected: onRequestRedirectedCallback
  });
  ```

### getOAuthToken<sup>8+</sup>

getOAuthToken(name: string, owner: string, authType: string, callback: AsyncCallback&lt;string&gt;): void;

获取指定应用帐户和鉴权类型的OAuth令牌,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                         | 必填 | 说明                 |
  | -------- | --------------------------- | ---- | -------------------- |
  | name     | string                      | 是   | 应用帐户的名称。      |
  | owner    | string                      | 是   | 应用帐户的所有者包名。 |
  | authType | string                      | 是   | 鉴权类型。            |
  | callback | AsyncCallback&lt;string&gt; | 是   | 查询结果的回调。      |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getOAuthToken("LiSi", "com.example.ohos.accountjsdemo", "readAge", (err, data) => {
       console.log('getOAuthToken err: ' + JSON.stringify(err));
       console.log('getOAuthToken token: ' + data);
  });
  ```

### getOAuthToken<sup>8+</sup>

getOAuthToken(name: string, owner: string, authType: string): Promise&lt;string&gt;;

获取指定应用帐户和鉴权类型的OAuth令牌,使用Promise方式异步返回结果。

- 参数:

  | 参数名   | 类型    | 必填 | 说明                 |
  | -------- | ------ | ---- | -------------------- |
  | name     | string | 是   | 应用帐户的名称。      |
  | owner    | string | 是   | 应用帐户的所有者包名。 |
  | authType | string | 是   | 鉴权类型。            |

- 参数:

  | 类型                  | 说明                              |
  | --------------------- | -------------------------------- |
  | Promise&lt;string&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getOAuthToken("LiSi", "com.example.ohos.accountjsdemo", "readAge").then((data) => {
       console.log('getOAuthToken token: ' + data);
  }).catch((err) => {
      console.log("getOAuthToken err: "  + JSON.stringify(err));
  });
  ```

### setOAuthToken<sup>8+</sup>

setOAuthToken(name: string, authType: string, token: string, callback: AsyncCallback&lt;void&gt;): void;

设置指定应用帐户和鉴权类型的OAuth令牌,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                       | 必填 | 说明            |
  | -------- | ------------------------- | ---- | -------------  |
  | name     | string                    | 是   | 应用帐户的名称。 |
  | authType | string                    | 是   | 鉴权类型。      |
  | token    | string                    | 是   | OAuth令牌。     |
  | callback | AsyncCallback&lt;void&gt; | 是   | 设置结果的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setOAuthToken("LiSi", "readAge", "xxxx", (err) => {
      console.log('setOAuthToken err: ' + JSON.stringify(err));
  });
  ```

### setOAuthToken<sup>8+</sup>

setOAuthToken(name: string, authType: string, token: string): Promise&lt;void&gt;;

设置指定应用帐户和鉴权类型的OAuth令牌,使用Promise方式异步返回结果。

- 参数:

  | 参数名   | 类型    | 必填 | 说明            |
  | -------- | ------ | ---- | -------------  |
  | name     | string | 是   | 应用帐户的名称。 |
  | authType | string | 是   | 鉴权类型。      |
  | token    | string | 是   | OAuth令牌。     |

- 参数:

  | 类型                | 说明                              |
  | ------------------- | -------------------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setOAuthToken("LiSi", "readAge", "xxxx").then(() => {
      console.log('setOAuthToken successfully');
  }).catch((err) => {
      console.log('setOAuthToken err: ' + JSON.stringify(err));
  });
  ```

### deleteOAuthToken<sup>8+</sup>

deleteOAuthToken(name: string, owner: string, authType: string, token: string, callback: AsyncCallback&lt;void&gt;): void;

删除指定应用帐户和鉴权类型的OAuth令牌,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                       | 必填 | 说明                 |
  | -------- | ------------------------- | ---- | ------------------  |
  | name     | string                    | 是   | 应用帐户的名称。      |
  | owner    | string                    | 是   | 应用帐户的所有者包名。 |
  | authType | string                    | 是   | 鉴权类型。            |
  | token    | string                    | 是   | 要删除的OAuth令牌。   |
  | callback | AsyncCallback&lt;void&gt; | 是   | 删除结果的回调。      |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.deleteOAuthToken("LiSi", "com.example.ohos.accountjsdemo", "readAge", "xxxxx", (err) => {
       console.log('deleteOAuthToken err: ' + JSON.stringify(err));
  });
  ```

### deleteOAuthToken<sup>8+</sup>

deleteOAuthToken(name: string, owner: string, authType: string, token: string): Promise&lt;void&gt;;

删除指定应用帐户和鉴权类型的OAuth令牌,使用Promise方式异步返回结果。

- 参数:

  | 参数名   | 类型    | 必填 | 说明                 |
  | -------- | ------ | ---- | ------------------  |
  | name     | string | 是   | 应用帐户的名称。      |
  | owner    | string | 是   | 应用帐户的所有者包名。 |
  | authType | string | 是   | 鉴权类型。            |
  | token    | string | 是   | 要删除的OAuth令牌。   |

- 参数:

  | 类型                           | 说明                   |
  | ------------------------------ | --------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.deleteOAuthToken("LiSi", "com.example.ohos.accountjsdemo", "readAge", "xxxxx").then(() => {
       console.log('deleteOAuthToken successfully');
  }).catch((err) => {
      console.log("deleteOAuthToken err: "  + JSON.stringify(err));
  });
  ```

### setOAuthTokenVisibility<sup>8+</sup>

setOAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean, callback: AsyncCallback&lt;void&gt;): void;

设置指定鉴权类型的OAuth令牌对特定应用的可见性,使用callback回调异步返回结果。

- 参数:

  | 参数名     | 类型                       | 必填 | 说明                  |
  | ---------- | ------------------------- | ---- | -------------------  |
  | name       | string                    | 是   | 应用帐户的名称。       |
  | authType   | string                    | 是   | 鉴权类型。             |
  | bundleName | string                    | 是   | 被设置可见性的应用包名。|
  | isVisible  | boolean                   | 是   | 是否可见。             |
  | callback   | AsyncCallback&lt;void&gt; | 是   | 设置结果的回调。       |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setOAuthTokenVisibility("LiSi", "readAge", "com.example.ohos.accountjsdemo", true, (err) => {
       console.log('setOAuthTokenVisibility err: ' + JSON.stringify(err));
  });
  ```

### setOAuthTokenVisibility<sup>8+</sup>

setOAuthTokenVisibility(name: string, authType: string, bundleName: string, isVisible: boolean): Promise&lt;void&gt;;

设置指定鉴权类型的OAuth令牌对特定应用的可见性,使用Promise方式异步返回结果。

- 参数:

  | 参数名     | 类型                       | 必填 | 说明                  |
  | ---------- | ------------------------- | ---- | -------------------  |
  | name       | string                    | 是   | 应用帐户的名称。       |
  | authType   | string                    | 是   | 鉴权类型。             |
  | bundleName | string                    | 是   | 被设置可见性的应用包名。|
  | isVisible  | boolean                   | 是   | 是否可见。             |

- 参数:

  | 类型                           | 说明                   |
  | ------------------------------ | --------------------- |
  | Promise&lt;void&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.setOAuthTokenVisibility("LiSi", "readAge", "com.example.ohos.accountjsdemo", true).then(() => {
      console.log('setOAuthTokenVisibility successfully');
  }).catch((err) => {
      console.log('setOAuthTokenVisibility err: ' + JSON.stringify(err));
  });
  ```

### checkOAuthTokenVisibility<sup>8+</sup>

checkOAuthTokenVisibility(name: string, authType: string, bundleName: string, callback: AsyncCallback&lt;boolean&gt;): void;

检查指定鉴权类型的OAuth令牌对特定应用的可见性,使用callback回调异步返回结果。

- 参数:

  | 参数名     | 类型                          | 必填 | 说明                     |
  | ---------- | ---------------------------- | ---- | ----------------------  |
  | name       | string                       | 是   | 应用帐户的名称。          |
  | authType   | string                       | 是   | 鉴权类型。               |
  | bundleName | string                       | 是   | 用于检查可见性的应用包名。 |
  | callback   | AsyncCallback&lt;boolean&gt; | 是   | 检查结果的回调。          |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.checkOAuthTokenVisibility("LiSi", "readAge", "com.example.ohos.accountjsdemo", true, (err, data) => {
      console.log('checkOAuthTokenVisibility err: ' + JSON.stringify(err));
      console.log('checkOAuthTokenVisibility isVisible: ' + data);
  });
  ```

### checkOAuthTokenVisibility<sup>8+</sup>

checkOAuthTokenVisibility(name: string, authType: string, bundleName: string): Promise&lt;boolean&gt;;

检查指定鉴权类型的OAuth令牌对特定应用的可见性,使用Promise方式异步返回结果。

- 参数:

  | 参数名     | 类型                       | 必填 | 说明                     |
  | ---------- | ------------------------- | ---- | ----------------------  |
  | name       | string                    | 是   | 应用帐户的名称。          |
  | authType   | string                    | 是   | 鉴权类型。               |
  | bundleName | string                    | 是   | 用于检查可见性的应用包名。 |

- 参数:

  | 类型                           | 说明                      |
  | ------------------------------ | ------------------------ |
  | Promise&lt;boolean&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.checkOAuthTokenVisibility("LiSi", "readAge", "com.example.ohos.accountjsdemo", true).then((data) => {
      console.log('checkOAuthTokenVisibility isVisible: ' + data);
  }).catch((err) => {
      console.log('checkOAuthTokenVisibility err: ' + JSON.stringify(err));
  });
  ```

### getAllOAuthTokens<sup>8+</sup>

getAllOAuthTokens(name: string, owner: string, callback: AsyncCallback&lt;Array&lt;OAuthTokenInfo&gt;&gt;): void;

获取指定应用对调用方全部可见的OAuth令牌,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                                              | 必填 | 说明                 |
  | -------- | ------------------------------------------------ | ---- | -------------------  |
  | name     | string                                           | 是   | 应用帐户的名称。      |
  | owner    | string                                           | 是   | 应用帐户的所有者包名。 |
  | callback | AsyncCallback&lt;Array&lt;OAuthTokenInfo&gt;&gt; | 是   | 查询结果的回调。      |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAllOAuthTokens("LiSi", "com.example.ohos.accountjsdemo", (err, data) => {
      console.log("getAllOAuthTokens err: "  + JSON.stringify(err));
      console.log('getAllOAuthTokens data: ' + JSON.stringify(data));
  });
  ```

### getAllOAuthTokens<sup>8+</sup>

getAllOAuthTokens(name: string, owner: string): Promise&lt;Array&lt;OAuthTokenInfo&gt;&gt;;

获取指定应用帐户对调用方可见的全部OAuth令牌,使用Promise方式异步返回结果。

- 参数:

  | 参数名   | 类型    | 必填 | 说明                 |
  | -------- | ------ | ---- | -------------------  |
  | name     | string | 是   | 应用帐户的名称。      |
  | owner    | string | 是   | 应用帐户的所有者包名。 |

- 参数:

  | 类型                           | 说明                                |
  | ------------------------------ | ----------------------------------- |
  | Promise&lt;Array&lt;OAuthTokenInfo&gt;&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAllOAuthTokens("LiSi", "com.example.ohos.accountjsdemo").then((data) => {
       console.log('getAllOAuthTokens data: ' + JSON.stringify(data));
  }).catch((err) => {
      console.log("getAllOAuthTokens err: "  + JSON.stringify(err));
  });
  ```

### getOAuthList<sup>8+</sup>

getOAuthList(name: string, authType: string, callback: AsyncCallback&lt;Array&lt;string&gt;&gt;): void;

获取指定应用帐户和鉴权类型的OAuth令牌的授权列表,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                                      | 必填 | 说明                 |
  | -------- | ---------------------------------------- | ---- | ------------------  |
  | name     | string                                   | 是   | 应用帐户的名称。      |
  | owner    | string                                   | 是   | 应用帐户的所有者包名。 |
  | callback | AsyncCallback&lt;Array&lt;string&gt;&gt; | 是   | 查询结果的回调。      |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getOAuthList("com.example.ohos.accountjsdemo", "readAge", (err, data) => {
       console.log('getOAuthList err: ' + JSON.stringify(err));
       console.log('getOAuthList data: ' + JSON.stringify(data));
  });
  ```

### getOAuthList<sup>8+</sup>

getOAuthList(name: string, authType: string): Promise&lt;Array&lt;string&gt;&gt;;

获取指定应用帐户和鉴权类型的OAuth令牌的授权列表,使用Promise方式异步返回结果。

- 参数:

  | 参数名   | 类型    | 必填 | 说明                 |
  | -------- | ------ | ---- | -------------------  |
  | name     | string | 是   | 应用帐户的名称。      |
  | owner    | string | 是   | 应用帐户的所有者包名。 |

- 参数:

  | 类型                           | 说明                                  |
  | ------------------------------ | ------------------------------------ |
  | Promise&lt;Array&lt;string&gt;&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getOAuthList("com.example.ohos.accountjsdemo", "readAge").then((data) => {
       console.log('getOAuthList data: ' + JSON.stringify(data));
  }).catch((err) => {
      console.log("getOAuthList err: "  + JSON.stringify(err));
  });
  ```

### getAuthenticatorCallback<sup>8+</sup>

getAuthenticatorCallback(sessionId: string, callback: AsyncCallback&lt;AuthenticatorCallback&gt;): void;

获取鉴权会话的认证器回调,使用callback回调异步返回结果。

- 参数:

  | 参数名 | 类型                                           | 必填 | 说明            |
  | --------- | ------------------------------------------ | ---- | -------------- |
  | sessionId | string                                     | 是   | 鉴权会话的标识。 |
  | callback  | AsyncCallback&lt;AuthenticatorCallback&gt; | 是   | 查询结果的回调。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  featureAbility.getWant((err, want) => {
    var sessionId = want.parameters[Constants.KEY_SESSION_ID];
    appAccountManager.getAuthenticatorCallback(sessionId, (err, callback) => {
        if (err.code != ResultCode.SUCCESS) {
            console.log("getAuthenticatorCallback err: "  + JSON.stringify(err));
            return;
        }
        var result = {Constants.KEY_NAME: "LiSi", Constants.KEY_OWNER: "com.example.ohos.accountjsdemo",
                      Constants.KEY_AUTH_TYPE: "readAge", Constants.KEY_TOKEN: "xxxxxx"};
        callback.OnResult(ResultCode.SUCCESS, result);
    });
  });
  ```

### getAuthenticatorCallback<sup>8+</sup>

getAuthenticatorCallback(sessionId: string): Promise&lt;AuthenticatorCallback&gt;;

获取鉴权会话的认证器回调,使用Promise方式异步返回结果。

- 参数:

  | 参数名      | 类型   | 必填 | 说明            |
  | ---------- | ------ | ---- | -------------- |
  | sessionId  | string | 是   | 鉴权会话的标识。 |

- 参数:

  | 类型                                 | 说明                              |
  | ------------------------------------ | -------------------------------- |
  | Promise&lt;AuthenticatorCallback&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  featureAbility.getWant().then((want) => {
      var sessionId = want.parameters[Constants.KEY_SESSION_ID];
      appAccountManager.getAuthenticatorCallback(sessionId).then((callback) => {
          var result = {Constants.KEY_NAME: "LiSi", Constants.KEY_OWNER: "com.example.ohos.accountjsdemo",
                        Constants.KEY_AUTH_TYPE: "readAge", Constants.KEY_TOKEN: "xxxxxx"};
          callback.OnResult(ResultCode.SUCCESS, result);
      }).catch((err) => {
          console.log("getAuthenticatorCallback err: "  + JSON.stringify(err));
      });
  }).catch((err) => {
      console.log("getWant err: "  + JSON.stringify(err));
  });
  ```

### getAuthenticatorInfo<sup>8+</sup>

getAuthenticatorInfo(owner: string, callback: AsyncCallback&lt;AuthenticatorInfo&gt;): void;

获取指定应用帐户的认证器信息,使用callback回调异步返回结果。

- 参数:

  | 参数名   | 类型                                    | 必填 | 说明                 |
  | -------- | -------------------------------------- | ---- | ------------------- |
  | owner    | string                                 | 是   | 应用帐户的所有者包名。 |
  | callback | AsyncCallback&lt;AuthenticatorInfo&gt; | 是   | 查询结果的回调。      |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAuthenticatorInfo("com.example.ohos.accountjsdemo", (err, data) => {
      console.log("getAuthenticatorInfo err: "  + JSON.stringify(err));
      console.log('getAuthenticatorInfo data: ' + JSON.stringify(data));
  });
  ```

### getAuthenticatorInfo<sup>8+</sup>

getAuthenticatorInfo(owner: string): Promise&lt;AuthenticatorInfo&gt;;

获取指定应用帐户的认证器信息,使用Promise方式异步返回结果。

- 参数:

  | 参数名 | 类型   | 必填 | 说明                 |
  | ----- | ------ | ---- | -------------------- |
  | owner | string | 是   | 应用帐户的所有者包名。 |

- 参数:

  | 类型                           | 说明                                |
  | ------------------------------ | ----------------------------------- |
  | Promise&lt;AuthenticatorInfo&gt; | Promise实例,用于获取异步返回结果。 |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  appAccountManager.getAuthenticatorInfo("com.example.ohos.accountjsdemo").then((data) => { 
       console.log('getAuthenticatorInfo: ' + JSON.stringify(data));
  }).catch((err) => {
      console.log("getAuthenticatorInfo err: "  + JSON.stringify(err));
  });
  ```

Z
zhaoyuan17 已提交
1470 1471
## AppAccountInfo

J
jidong 已提交
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
表示应用帐号信息。

| 参数名 | 类型   | 必填 | 说明              |
| ----- | ------ | ---- | ---------------- |
| owner | string | 是   | 应用帐户的所有者包名。 |
| name  | string | 是   | 应用帐户的名称。      |

## OAuthTokenInfo<sup>8+</sup>

表示OAuth令牌信息。

| 参数名   | 类型    | 必填 | 说明            |
| -------- | ------ | ---- | -------------- |
| authType | string | 是   | 令牌的鉴权类型。 |
| token    | string | 是   | 令牌的取值。    |

## AuthenticatorInfo<sup>8+</sup>

表示OAuth认证器信息。

| 参数名  | 类型    | 必填 | 说明                |
| ------- | ------ | ---- | ------------------ |
| owner   | string | 是   | 认证器的所有者包名。 |
| iconId  | string | 是   | 认证器的图标标识。   |
| labelId | string | 是   | 认证器的标签标识。   |

## Constants<sup>8+</sup>

表示常量的枚举。

| 名称                          | 默认值                  | 描述                    |
| ----------------------------- | ---------------------- | ----------------------- |
| ACTION_ADD_ACCOUNT_IMPLICITLY | "addAccountImplicitly" | 表示操作_隐式添加帐号。   |
| ACTION_AUTHENTICATE           | "authenticate"         | 表示操作_鉴权。          |
| KEY_NAME                      | "name"                 | 表示键名_应用帐户名称。   |
| KEY_OWNER                     | "owner"                | 表示键名_应用帐户所有者。 |
| KEY_TOKEN                     | "token"                | 表示键名_令牌。          |
| KEY_ACTION                    | "action"               | 表示键名_操作。          |
| KEY_AUTH_TYPE                 | "authType"             | 表示键名_鉴权类型。      |
| KEY_SESSION_ID                | "sessionId"            | 表示键名_会话标识。      |
| KEY_CALLER_PID                | "callerPid"            | 表示键名_调用方PID。     |
| KEY_CALLER_UID                | "callerUid"            | 表示键名_调用方UID。     |
| KEY_CALLER_BUNDLE_NAME        | "callerBundleName"     | 表示键名_调用方包名。     |

## ResultCode<sup>8+</sup>
Z
zhaoyuan17 已提交
1517

J
jidong 已提交
1518
表示返回码的枚举。
Z
zhaoyuan17 已提交
1519

J
jidong 已提交
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
| 名称                                | 默认值 | 描述                   |
| ----------------------------------- | ----- | ---------------------- |
| SUCCESS                             | 0     | 表示操作成功。          |
| ERROR_ACCOUNT_NOT_EXIST             | 10001 | 表示应用帐户不存在。     |
| ERROR_APP_ACCOUNT_SERVICE_EXCEPTION | 10002 | 表示应用帐户服务异常。   |
| ERROR_INVALID_PASSWORD              | 10003 | 表示密码无效。          |
| ERROR_INVALID_REQUEST               | 10004 | 表示请求无效。          |
| ERROR_INVALID_RESPONSE              | 10005 | 表示响应无效。          |
| ERROR_NETWORK_EXCEPTION             | 10006 | 表示网络异常。          |
| ERROR_OAUTH_AUTHENTICATOR_NOT_EXIST | 10007 | 表示认证器不存在。      |
| ERROR_OAUTH_CANCELED                | 10008 | 表示鉴权取消。          |
| ERROR_OAUTH_LIST_TOO_LARGE          | 10009 | 表示开放授权列表过大。   |
| ERROR_OAUTH_SERVICE_BUSY            | 10010 | 表示开放授权服务忙碌。   |
| ERROR_OAUTH_SERVICE_EXCEPTION       | 10011 | 表示开放授权服务异常。   |
| ERROR_OAUTH_SESSION_NOT_EXIST       | 10012 | 表示鉴权会话不存在。     |
| ERROR_OAUTH_TIMEOUT                 | 10013 | 表示鉴权超时。          |
| ERROR_OAUTH_TOKEN_NOT_EXIST         | 10014 | 表示开放授权令牌不存在。 |
| ERROR_OAUTH_TOKEN_TOO_MANY          | 10015 | 表示开放授权令牌过多。   |
| ERROR_OAUTH_UNSUPPORT_ACTION        | 10016 | 表示不支持的鉴权操作。   |
| ERROR_OAUTH_UNSUPPORT_AUTH_TYPE     | 10017 | 表示不支持的鉴权类型。   |
| ERROR_PERMISSION_DENIED             | 10018 | 表示权限不足。          |
Z
zhaoyuan17 已提交
1541

J
jidong 已提交
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656
## AuthenticatorCallback<sup>8+</sup>

OAuth认证器回调接口。

### onResult<sup>8+</sup>

onResult: (code: number, result: {[key: string]: any}) =&gt; void;

通知鉴权结果。

- 参数:
  | 参数名  | 类型                 | 必填 | 说明        |
  | ------ | -------------------- | ---- | ----------- |
  | code   | number               | 是   | 鉴权结果码。 |
  | result | {[key: string]: any} | 是   | 鉴权结果。   |

- 示例:

  ```
  const appAccountManager = account_appAccount.createAppAccountManager();
  var sessionId = "1234";
  appAccountManager.getAuthenticatorCallback(sessionId).then((callback) => {
      var result = {Constants.KEY_NAME: "LiSi", Constants.KEY_OWNER: "com.example.ohos.accountjsdemo",
                    Constants.KEY_AUTH_TYPE: "readAge", Constants.KEY_TOKEN: "xxxxxx"};
      callback.OnResult(ResultCode.SUCCESS, result);
  }).catch((err) => {
      console.log("getAuthenticatorCallback err: "  + JSON.stringify(err));
  });
  ```

### onRequestRedirected<sup>8+</sup>

onRequestRedirected: (request: Want) =&gt; void;

通知鉴权请求被跳转。

- 参数:
  | 参数名  | 类型  | 必填 | 说明                |
  | ------- | ---- | ---- | ------------------ |
  | request | Want | 是   | 用于跳转的请求信息。 |

- 示例:

  ```
  class MyAuthenticator extends account_appAccount.Authenticator {
      addAccountImplicitly(authType, callerBundleName, options, callback) {
          callback.onRequestRedirected({
              bundleName: "com.example.ohos.accountjsdemo",
              abilityName: "com.example.ohos.accountjsdemo.LoginAbility",
          });
      }

      authenticate(name, authType, callerBundleName, options, callback) {
          var result = {Constants.KEY_NAME: name, Constants.KEY_AUTH_TYPE: authType, Constants.KEY_TOKEN: "xxxxxx"};
          callback.onResult(ResultCode.SUCCESS, result);
      }
  }
  ```

## Authenticator<sup>8+</sup>

OAuth认证器基类。

### addAccountImplicitly<sup>8+</sup>

addAccountImplicitly(authType: string, callerBundleName: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;

根据指定的鉴权类型和可选项,隐式地添加应用帐户,并使用callback回调异步返回结果。

- 参数:
  | 参数名           | 类型                   | 必填 | 说明                         |
  | ---------------- | --------------------- | ---  | --------------------------  |
  | authType         | string                | 是   | 应用帐户的鉴权类型。          |
  | callerBundleName | string                | 是   | 鉴权请求方的包名。            |
  | options          | {[key: string]: any}  | 是   | 鉴权所需要的可选项。          |
  | callback         | AuthenticatorCallback | 是   | 认证器回调,用于返回鉴权结果。 |

### authenticate<sup>8+</sup>

authenticate(name: string, authType: string, callerBundleName: string, options: {[key: string]: any}, callback: AuthenticatorCallback): void;

对应用帐户进行鉴权,获取OAuth令牌,并使用callback回调异步返回结果。

- 参数:
  | 接口名            | 类型                  | 必填 | 说明                        |
  | ---------------- | --------------------- | ---- | --------------------------  |
  | name             | string                | 是   | 应用帐户的名称。              |
  | authType         | string                | 是   | 应用帐户的鉴权类型。          |
  | callerBundleName | string                | 是   | 鉴权请求方的包名。            |
  | options          | {[key: string]: any}  | 是   | 鉴权所需要的可选项。          |
  | callback         | AuthenticatorCallback | 是   | 认证器回调,用于返回鉴权结果。 |

- 示例:

  ```
  class MyAuthenticator extends account_appAccount.Authenticator {
      addAccountImplicitly(authType, callerBundleName, options, callback) {
          callback.onRequestRedirected({
              bundleName: "com.example.ohos.accountjsdemo",
              abilityName: "com.example.ohos.accountjsdemo.LoginAbility",
          });
      }

      authenticate(name, authType, callerBundleName, options, callback) {
          var result = {Constants.KEY_NAME: name, Constants.KEY_AUTH_TYPE: authType, Constants.KEY_TOKEN: "xxxxxx"};
          callback.onResult(ResultCode.SUCCESS, result);
      }
  }

  export default {
      onConnect(want) {
          return new MyAuthenticator();
      }
  }
  ```