分布式帐号管理

2024-01-23 17:53 更新

本模块提供管理分布式帐号的一些基础功能,主要包括查询和更新帐号登录状态。

说明

本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

  1. import account_distributedAccount from '@ohos.account.distributedAccount';

account_distributedAccount.getDistributedAccountAbility

getDistributedAccountAbility(): DistributedAccountAbility

获取分布式帐号单实例对象。

系统能力: SystemCapability.Account.OsAccount

返回值:

类型

说明

DistributedAccountAbility

返回一个实例,实例提供查询和更新分布式帐号登录状态方法。

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();

DistributedAccountAbility

提供查询和更新分布式帐号登录状态方法(需要先获取分布式帐号的单实例对象)。

getOsAccountDistributedInfo9+

getOsAccountDistributedInfo(callback: AsyncCallback<DistributedInfo>): void

获取分布式帐号信息,使用callback异步回调。

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_DISTRIBUTED_ACCOUNTS 或 ohos.permission.GET_DISTRIBUTED_ACCOUNTS 或 ohos.permission.DISTRIBUTED_DATASYNC

参数:

参数名

类型

必填

说明

callback

AsyncCallback<DistributedInfo>

回调参数。当获取分布式帐号信息成功,err为undefined,data为获取到的分布式帐号信息对象;否则为错误对象。

错误码:

错误码ID

错误信息

12300001

System service exception.

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. try {
  3. accountAbility.getOsAccountDistributedInfo((err, data) => {
  4. console.log("getOsAccountDistributedInfo err: " + JSON.stringify(err));
  5. console.log('Query account info name: ' + data.name);
  6. console.log('Query account info id: ' + data.id);
  7. });
  8. } catch (e) {
  9. console.log("getOsAccountDistributedInfo exception: " + JSON.stringify(e));
  10. }

getOsAccountDistributedInfo9+

getOsAccountDistributedInfo(): Promise<DistributedInfo>

获取分布式帐号信息。使用Promise异步回调。

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_DISTRIBUTED_ACCOUNTS 或 ohos.permission.GET_DISTRIBUTED_ACCOUNTS 或 ohos.permission.DISTRIBUTED_DATASYNC

返回值:

类型

说明

Promise<DistributedInfo>

Promise对象,返回分布式帐号信息对象。

错误码:

错误码ID

错误信息

12300001

System service exception.

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. try {
  3. accountAbility.getOsAccountDistributedInfo().then((data) => {
  4. console.log('Query account info name: ' + data.name);
  5. console.log('Query account info id: ' + data.id);
  6. }).catch((err) => {
  7. console.log("getOsAccountDistributedInfo err: " + JSON.stringify(err));
  8. });
  9. } catch (e) {
  10. console.log("getOsAccountDistributedInfo exception: " + JSON.stringify(e));
  11. }

queryOsAccountDistributedInfo(deprecated)

queryOsAccountDistributedInfo(callback: AsyncCallback<DistributedInfo>): void

获取分布式帐号信息。使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃。建议使用getOsAccountDistributedInfo

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_LOCAL_ACCOUNTS 或 ohos.permission.DISTRIBUTED_DATASYNC

参数:

参数名

类型

必填

说明

callback

AsyncCallback<DistributedInfo>

回调函数。当获取分布式帐号信息成功,err为undefined,data为获取到的分布式帐号信息对象;否则为错误对象。

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. accountAbility.queryOsAccountDistributedInfo((err, data) => {
  3. console.log("queryOsAccountDistributedInfo err: " + JSON.stringify(err));
  4. console.log('Query account info name: ' + data.name);
  5. console.log('Query account info id: ' + data.id);
  6. });

queryOsAccountDistributedInfo(deprecated)

queryOsAccountDistributedInfo(): Promise<DistributedInfo>

获取分布式帐号信息。使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃。建议使用getOsAccountDistributedInfo

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_LOCAL_ACCOUNTS 或 ohos.permission.DISTRIBUTED_DATASYNC

返回值:

类型

说明

Promise<DistributedInfo>

Promise对象,返回分布式帐号信息对象。

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. accountAbility.queryOsAccountDistributedInfo().then((data) => {
  3. console.log('Query account info name: ' + data.name);
  4. console.log('Query account info id: ' + data.id);
  5. }).catch((err) => {
  6. console.log("queryOsAccountDistributedInfoerr: " + JSON.stringify(err));
  7. });

setOsAccountDistributedInfo9+

setOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback<void>): void

更新分布式帐号信息。使用callback异步回调。

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_DISTRIBUTED_ACCOUNTS

参数:

参数名

类型

必填

说明

accountInfo

DistributedInfo

分布式帐号信息。

callback

AsyncCallback<void>

回调函数。当更新分布式帐号信息成功时,err为undefined,否则为错误对象。

错误码:

错误码ID

错误信息

12300001

System service exception.

12300002

Invalid accountInfo.

12300003

Account not found.

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. let accountInfo = {id: '12345', name: 'ZhangSan', event: 'Ohos.account.event.LOGIN'};
  3. try {
  4. accountAbility.setOsAccountDistributedInfo(accountInfo, (err) => {
  5. console.log("setOsAccountDistributedInfo err: " + JSON.stringify(err));
  6. });
  7. } catch (e) {
  8. console.log("setOsAccountDistributedInfo exception: " + JSON.stringify(e));
  9. }

setOsAccountDistributedInfo9+

setOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise<void>

更新分布式帐号信息。使用Promise异步回调。

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_DISTRIBUTED_ACCOUNTS

参数:

参数名

类型

必填

说明

accountInfo

DistributedInfo

分布式帐户信息。

返回值:

类型

说明

Promise<void>

Promise对象,无返回结果的Promise对象。

错误码:

错误码ID

错误信息

12300001

System service exception.

12300002

invalid accountInfo.

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. let accountInfo = {id: '12345', name: 'ZhangSan', event: 'Ohos.account.event.LOGIN'};
  3. try {
  4. accountAbility.setOsAccountDistributedInfo(accountInfo).then(() => {
  5. console.log('setOsAccountDistributedInfo Success');
  6. }).catch((err) => {
  7. console.log("setOsAccountDistributedInfo err: " + JSON.stringify(err));
  8. });
  9. } catch (e) {
  10. console.log("setOsAccountDistributedInfo exception: " + JSON.stringify(e));
  11. }

updateOsAccountDistributedInfo(deprecated)

updateOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCallback<void>): void

更新分布式帐号信息。使用callback异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃。建议使用setOsAccountDistributedInfo

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_LOCAL_ACCOUNTS

参数:

参数名

类型

必填

说明

accountInfo

DistributedInfo

分布式帐号信息。

callback

AsyncCallback<void>

回调函数。当更新分布式帐号信息成功时,err为undefined,否则为错误对象。

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. let accountInfo = {id: '12345', name: 'ZhangSan', event: 'Ohos.account.event.LOGIN'};
  3. accountAbility.updateOsAccountDistributedInfo(accountInfo, (err) => {
  4. console.log("queryOsAccountDistributedInfo err: " + JSON.stringify(err));
  5. });

updateOsAccountDistributedInfo(deprecated)

updateOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise<void>

更新分布式帐号信息。使用Promise异步回调。

说明

从 API version 7开始支持,从API version 9开始废弃。建议使用setOsAccountDistributedInfo

系统能力: SystemCapability.Account.OsAccount

需要权限: ohos.permission.MANAGE_LOCAL_ACCOUNTS

参数:

参数名

类型

必填

说明

accountInfo

DistributedInfo

分布式帐户信息。

返回值:

类型

说明

Promise<void>

Promise对象,无返回结果的Promise对象。

示例:

  1. const accountAbility = account_distributedAccount.getDistributedAccountAbility();
  2. let accountInfo = {id: '12345', name: 'ZhangSan', event: 'Ohos.account.event.LOGIN'};
  3. accountAbility.updateOsAccountDistributedInfo(accountInfo).then(() => {
  4. console.log('updateOsAccountDistributedInfo Success');
  5. }).catch((err) => {
  6. console.log("updateOsAccountDistributedInfo err: " + JSON.stringify(err));
  7. });

DistributedInfo

提供操作系统帐户的分布式信息。

系统能力: SystemCapability.Account.OsAccount

名称

类型

必填

说明

name

string

分布式帐号名称,非空字符串。

id

string

分布式帐号UID,非空字符串。

event

string

分布式帐号登录状态,包括登录、登出、Token失效和注销,分别对应以下字符串:

- Ohos.account.event.LOGIN

- Ohos.account.event.LOGOUT

- Ohos.account.event.TOKEN_INVALID

- Ohos.account.event.LOGOFF

nickname9+

string

分布式帐号的昵称,非空字符串。

avatar9+

string

分布式帐号的头像,非空字符串。

scalableData

object

分布式帐号扩展信息,根据业务所需,以k-v形式传递定制化信息。

说明:该参数是预留的可选项,目前查询和更新的方法实现中未使用。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号