Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
f867bd71
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
f867bd71
编写于
6月 28, 2022
作者:
O
openharmony_ci
提交者:
Gitee
6月 28, 2022
浏览文件
操作
浏览文件
下载
差异文件
!6023 add appaccount api doc
Merge pull request !6023 from jidong/dev_0628
上级
624f7f74
52e0f1ab
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
521 addition
and
3 deletion
+521
-3
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
+521
-3
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
浏览文件 @
f867bd71
...
@@ -1565,6 +1565,376 @@ getAuthenticatorInfo(owner: string): Promise<AuthenticatorInfo>
...
@@ -1565,6 +1565,376 @@ getAuthenticatorInfo(owner: string): Promise<AuthenticatorInfo>
});
});
```
```
### checkAppAccess<sup>9+</sup>
checkAppAccess(name: string, bundleName: string, callback: AsyncCallback
<
boolean
>
): void
检查指定应用帐户对特定应用是否授权,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ---------------------------- | ----- | ---------------- |
| name | string | 是 | 应用帐户的名称。 |
| bundleName | string | 是 | 被检查的应用包名。 |
| callback | AsyncCallback
<
boolean
>
| 是 | 检查结果的回调。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
checkAppAccess
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
(
err
,
data
)
=>
{
console
.
log
(
'
checkAppAccess:
'
+
JSON
.
stringify
(
data
));
console
.
log
(
"
checkAppAccess err:
"
+
JSON
.
stringify
(
err
));
});
```
### checkAppAccess<sup>9+</sup>
checkAppAccess(name: string, bundleName: string): Promise
<
boolean
>
检查指定应用帐户对特定应用是否授权,使用Promise方式异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ------ | ----- | ---------------- |
| name | string | 是 | 应用帐户的名称。 |
| bundleName | string | 是 | 被检查的应用包名。 |
**参数:**
| 类型 | 说明 |
| ---------------------- | --------------------------------- |
| Promise
<
boolean
>
| Promise实例,用于获取异步返回结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
checkAppAccess
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
).
then
((
data
)
=>
{
console
.
log
(
'
checkAppAccess:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
err
)
=>
{
console
.
log
(
"
checkAppAccess err:
"
+
JSON
.
stringify
(
err
));
});
```
### deleteAccountCredential<sup>9+</sup>
deleteAccountCredential(name: string, credentialType: string, callback: AsyncCallback
<
void
>
): void
删除指定应用帐户的指定类型的凭据信息,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ------------------------- | ----- | -------------- |
| name | string | 是 | 应用帐户的名称。 |
| credentialType | string | 是 | 凭据类型。 |
| callback | AsyncCallback
<
void
>
| 是 | 删除结果的回调。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
deleteAccountCredential
(
"
zhangsan
"
,
"
pin
"
,
(
err
,
data
)
=>
{
console
.
log
(
'
deleteAccountCredential:
'
+
JSON
.
stringify
(
data
));
console
.
log
(
"
deleteAccountCredential err:
"
+
JSON
.
stringify
(
err
));
});
```
### deleteAccountCredential<sup>9+</sup>
deleteAccountCredential(name: string, credentialType: string): Promise
<
void
>
删除指定应用帐户的指定类型的凭据信息,使用Promise方式异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ------ | ----- | --------------- |
| name | string | 是 | 应用帐户的名称。 |
| credentialType | string | 是 | 凭据类型。 |
**参数:**
| 类型 | 说明 |
| ------------------- | -------------------------------- |
| Promise
<
void
>
| Promise实例,用于获取异步返回结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
deleteAccountCredential
(
"
zhangsan
"
,
"
pin
"
).
then
((
data
)
=>
{
console
.
log
(
'
deleteAccountCredential:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
err
)
=>
{
console
.
log
(
"
deleteAccountCredential err:
"
+
JSON
.
stringify
(
err
));
});
```
### checkAccountLabels<sup>9+</sup>
checkAccountLabels(name: string, owner: string, labels: Array
<
string
>
, callback: AsyncCallback
<
boolean
>
): void;
检查指定帐户是否具有特定的标签集合,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ------------------------- | ----- | --------------- |
| name | string | 是 | 应用帐户的名称。 |
| owner | string | 是 | 应用帐户的所有者。|
| labels | Array
<
string
<
| 是 | 标签数组。 |
| callback | AsyncCallback
<
void
>
| 是 | 检查结果的回调。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
checkAccountLabels
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
(
err
,
data
)
=>
{
console
.
log
(
'
checkAccountLabels:
'
+
JSON
.
stringify
(
data
));
console
.
log
(
"
checkAccountLabels err:
"
+
JSON
.
stringify
(
err
));
});
```
### checkAccountLabels<sup>9+</sup>
checkAccountLabels(name: string, owner: string, labels: Array
<
string
>
): Promise
<
void
>
检查指定帐户是否具有特定的标签集合,使用Promise方式异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ------------------------- | ----- | --------------- |
| name | string | 是 | 应用帐户的名称。 |
| owner | string | 是 | 应用帐户的所有者。|
| labels | Array
<
string
<
| 是 | 标签数组。 |
**参数:**
| 类型 | 说明 |
| ------------------- | -------------------------------- |
| Promise
<
boolean
>
| Promise实例,用于获取异步返回结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
checkAccountLabels
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
).
then
((
data
)
=>
{
console
.
log
(
'
checkAccountLabels:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
err
)
=>
{
console
.
log
(
"
checkAccountLabels err:
"
+
JSON
.
stringify
(
err
));
});
```
### selectAccountsByOptions<sup>9+</sup>
selectAccountsByOptions(options: SelectAccountsOptions, callback: AsyncCallback
<
Array
<
AppAccountInfo
>>
);
根据选项选择请求方可访问的帐号列表,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ----------------------------------- | ----- | --------------- |
| options | SelectAccountsOptions | 是 | 选择帐户的选项。 |
| callback | AsyncCallback
<
AppAccountInfo
>
| 是 | 选择结果的回调。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
var
options
=
{
allowedOwners
:
[
"
com.example.ohos.accountjsdemo
"
]
};
appAccountManager
.
selectAccountsByOptions
(
options
,
(
err
,
data
)
=>
{
console
.
log
(
'
selectAccountsByOptions:
'
+
JSON
.
stringify
(
data
));
console
.
log
(
"
selectAccountsByOptions err:
"
+
JSON
.
stringify
(
err
));
});
```
### selectAccountsByOptions<sup>9+</sup>
selectAccountsByOptions(options: SelectAccountsOptions): Promise
<
void
>
根据选项选择请求方可访问的帐户列表,使用Promise方式异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ------------------------- | ----- | --------------- |
| options | SelectAccountsOptions | 是 | 选择帐户的选项。 |
**参数:**
| 类型 | 说明 |
| ------------------- | -------------------------------- |
| Promise
<
AppAccountInfo
>
| Promise实例,用于获取异步返回结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
var
options
=
{
allowedOwners
:
[
"
com.example.ohos.accountjsdemo
"
]
};
appAccountManager
.
selectAccountsByOptions
(
options
).
then
((
data
)
=>
{
console
.
log
(
'
selectAccountsByOptions:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
err
)
=>
{
console
.
log
(
"
selectAccountsByOptions err:
"
+
JSON
.
stringify
(
err
));
});
```
### verifyCredential<sup>9+</sup>
verifyCredential(name: string, owner: string, callback: AuthenticatorCallback): void;
验证用户凭据,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------- | ----- | ----------------------- |
| name | string | 是 | 应用帐户的名称。 |
| owner | string | 是 | 应用帐户的所有者。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,返回验证结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
verifyCredential
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
{
onResult
:
(
resultCode
,
result
)
=>
{
console
.
log
(
"
verifyCredential onResult, resultCode:
"
+
JSON
.
stringify
(
resultCode
));
console
.
log
(
"
verifyCredential onResult, result:
"
+
JSON
.
stringify
(
result
));
},
onRequestRedirected
:
(
request
)
=>
{
console
.
log
(
"
verifyCredential onRequestRedirected, request:
"
+
JSON
.
stringify
(
request
));
}
});
```
### verifyCredential<sup>9+</sup>
verifyCredential(name: string, owner: string, options, callback: AuthenticatorCallback): void;
验证用户凭据,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ----------------------- | ----- | ----------------------- |
| name | string | 是 | 应用帐户的名称。 |
| owner | string | 是 | 应用帐户的所有者。 |
| options | VerifyCredentialOptions | 是 | 验证凭据的选项。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,返回验证结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
var
options
=
{
credentialType
:
"
pin
"
,
credential
:
"
123456
"
};
appAccountManager
.
verifyCredential
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
options
,
{
onResult
:
(
resultCode
,
result
)
=>
{
console
.
log
(
"
verifyCredential onResult, resultCode:
"
+
JSON
.
stringify
(
resultCode
));
console
.
log
(
"
verifyCredential onResult, result:
"
+
JSON
.
stringify
(
result
));
},
onRequestRedirected
:
(
request
)
=>
{
console
.
log
(
"
verifyCredential onRequestRedirected, request:
"
+
JSON
.
stringify
(
request
));
}
});
```
### setAuthenticatorProperties<sup>9+</sup>
setAuthenticatorProperties(owner: string, callback: AuthenticatorCallback): void;
设置认证器属性,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------- | ----- | ----------------------- |
| owner | string | 是 | 认证器的所有者。 |
| options | SetPropertiesOptions | 是 | 设置属性的选项。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,返回设置结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
setAuthenticatorProperties
(
"
com.example.ohos.accountjsdemo
"
,
{
onResult
:
(
resultCode
,
result
)
=>
{
console
.
log
(
"
setAuthenticatorProperties onResult, resultCode:
"
+
JSON
.
stringify
(
resultCode
));
console
.
log
(
"
setAuthenticatorProperties onResult, result:
"
+
JSON
.
stringify
(
result
));
},
onRequestRedirected
:
(
request
)
=>
{
console
.
log
(
"
setAuthenticatorProperties onRequestRedirected, request:
"
+
JSON
.
stringify
(
request
));
}
});
```
### setAuthenticatorProperties<sup>9+</sup>
setAuthenticatorProperties(owner: string, options: SetPropertiesOptions, callback: AuthenticatorCallback): void;
设置认证器属性,使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | --------------------- | ----- | ----------------------- |
| owner | string | 是 | 认证器的所有者。 |
| options | SetPropertiesOptions | 是 | 设置属性的选项。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,返回设置结果。 |
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
var
options
=
{
properties
:
{
"
prop1
"
:
"
value1
"
}
};
appAccountManager
.
setAuthenticatorProperties
(
"
com.example.ohos.accountjsdemo
"
,
options
,
{
onResult
:
(
resultCode
,
result
)
=>
{
console
.
log
(
"
setAuthenticatorProperties onResult, resultCode:
"
+
JSON
.
stringify
(
resultCode
));
console
.
log
(
"
setAuthenticatorProperties onResult, result:
"
+
JSON
.
stringify
(
result
));
},
onRequestRedirected
:
(
request
)
=>
{
console
.
log
(
"
setAuthenticatorProperties onRequestRedirected, request:
"
+
JSON
.
stringify
(
request
));
}
});
```
## AppAccountInfo
## AppAccountInfo
表示应用帐号信息。
表示应用帐号信息。
...
@@ -1599,6 +1969,42 @@ getAuthenticatorInfo(owner: string): Promise<AuthenticatorInfo>
...
@@ -1599,6 +1969,42 @@ getAuthenticatorInfo(owner: string): Promise<AuthenticatorInfo>
| iconId | string | 是 | 认证器的图标标识。 |
| iconId | string | 是 | 认证器的图标标识。 |
| labelId | string | 是 | 认证器的标签标识。 |
| labelId | string | 是 | 认证器的标签标识。 |
## SelectAccountsOptions<sup>9+</sup>
表示用于选择帐号的选项。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Account.AppAccount。
| 参数名 | 类型 | 必填 | 说明 |
| --------------- | --------------------------- | ----- | ------------------- |
| allowedAccounts | Array
<
AppAccountInfo
>
| 否 | 允许的帐号数组。 |
| allowedOwners | Array
<
string
>
| 否 | 允许的帐号所有者数组。 |
| requiredLabels | Array
<
string
>
| 否 | 认证器的标签标识。 |
## VerifyCredentialOptions<sup>9+</sup>
表示用于验证凭据的选项。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Account.AppAccount。
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ---------------------- | ----- | -------------- |
| credentialType | string | 否 | 凭据类型。 |
| credential | string | 否 | 凭据取值。 |
| parameters | {[key:string]: Object} | 否 | 自定义参数对象。 |
## SetPropertiesOptions<sup>9+</sup>
表示用于设置属性的选项。
**系统能力:**
以下各项对应的系统能力均为SystemCapability.Account.AppAccount。
| 参数名 | 类型 | 必填 | 说明 |
| ---------- | ---------------------- | ----- | -------------- |
| properties | {[key:string]: Object} | 否 | 属性对象。 |
| parameters | {[key:string]: Object} | 否 | 自定义参数对象。 |
## Constants<sup>8+</sup>
## Constants<sup>8+</sup>
表示常量的枚举。
表示常量的枚举。
...
@@ -1618,6 +2024,8 @@ getAuthenticatorInfo(owner: string): Promise<AuthenticatorInfo>
...
@@ -1618,6 +2024,8 @@ getAuthenticatorInfo(owner: string): Promise<AuthenticatorInfo>
| KEY_CALLER_PID | "callerPid" | 表示键名,调用方PID。 |
| KEY_CALLER_PID | "callerPid" | 表示键名,调用方PID。 |
| KEY_CALLER_UID | "callerUid" | 表示键名,调用方UID。 |
| KEY_CALLER_UID | "callerUid" | 表示键名,调用方UID。 |
| KEY_CALLER_BUNDLE_NAME | "callerBundleName" | 表示键名,调用方包名。 |
| KEY_CALLER_BUNDLE_NAME | "callerBundleName" | 表示键名,调用方包名。 |
| KEY_REQUIRED_LABELS | "requiredLabels" | 表示键名,必需的标签。 |
| KEY_BOOLEAN_RESULT | "booleanResult" | 表示键名,布尔返回值。 |
## ResultCode<sup>8+</sup>
## ResultCode<sup>8+</sup>
...
@@ -1655,7 +2063,7 @@ OAuth认证器回调接口。
...
@@ -1655,7 +2063,7 @@ OAuth认证器回调接口。
onResult: (code: number, result: {[key: string]: any}) =
>
void
onResult: (code: number, result: {[key: string]: any}) =
>
void
通知
鉴权
结果。
通知
请求
结果。
**系统能力:**
SystemCapability.Account.AppAccount
**系统能力:**
SystemCapability.Account.AppAccount
...
@@ -1685,7 +2093,7 @@ onResult: (code: number, result: {[key: string]: any}) => void
...
@@ -1685,7 +2093,7 @@ onResult: (code: number, result: {[key: string]: any}) => void
onRequestRedirected: (request: Want) =
>
void
onRequestRedirected: (request: Want) =
>
void
通知
鉴权
请求被跳转。
通知请求被跳转。
**系统能力:**
SystemCapability.Account.AppAccount
**系统能力:**
SystemCapability.Account.AppAccount
...
@@ -1714,9 +2122,29 @@ onRequestRedirected: (request: Want) => void
...
@@ -1714,9 +2122,29 @@ onRequestRedirected: (request: Want) => void
}
}
```
```
### onRequestContinued<sup>9+</sup>
onRequestContinued: () =
>
void
通知请求被继续处理。
**系统能力:**
SystemCapability.Account.AppAccount
**示例:**
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
var
sessionId
=
"
1234
"
;
appAccountManager
.
getAuthenticatorCallback
(
sessionId
).
then
((
callback
)
=>
{
callback
.
OnRequestContinued
();
}).
catch
((
err
)
=>
{
console
.
log
(
"
getAuthenticatorCallback err:
"
+
JSON
.
stringify
(
err
));
});
```
## Authenticator<sup>8+</sup>
## Authenticator<sup>8+</sup>
OAuth
认证器基类。
认证器基类。
### addAccountImplicitly<sup>8+</sup>
### addAccountImplicitly<sup>8+</sup>
...
@@ -1751,6 +2179,72 @@ authenticate(name: string, authType: string, callerBundleName: string, options:
...
@@ -1751,6 +2179,72 @@ authenticate(name: string, authType: string, callerBundleName: string, options:
| options | {[key: string]: any} | 是 | 鉴权所需要的可选项。 |
| options | {[key: string]: any} | 是 | 鉴权所需要的可选项。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,用于返回鉴权结果。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,用于返回鉴权结果。 |
### verifyCredential<sup>9+</sup>
verifyCredential(name: string, options: VerifyCredentialOptions, callback: AuthenticatorCallback): void;
验证应用帐户的凭据,并使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| --------- | ------------------------ | -- -- | --------------------------- |
| name | string | 是 | 应用帐号的名称。 |
| options | VerifyCredentialOptions | 是 | 验证凭据的可选项。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,用于返回验证结果。 |
### setProperties<sup>9+</sup>
setProperties(options: SetPropertiesOptions, callback: AuthenticatorCallback): void;
设置认证器属性,并使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| --------- | --------------------- | -- -- | --------------------------- |
| options | SetPropertiesOptions | 是 | 设置属性的可选项。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,用于返回设置结果。 |
### checkAccountLabels<sup>9+</sup>
checkAccountLabels(name: string, labels: Array
<
string
>
, callback: AuthenticatorCallback): void;
检查帐号标签,并使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| --------- | --------------------- | -- -- | --------------------------- |
| name | string | 是 | 应用帐号的名称。 |
| labels | Array
<string>
| 是 | 标签数组。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,用于返回检查结果。 |
### isAccountRemovable<sup>9+</sup>
isAccountRemovable(name: string, callback: AuthenticatorCallback): void;
判断帐号是否可以删除,并使用callback回调异步返回结果。
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| --------- | --------------------- | -- -- | --------------------------- |
| name | string | 是 | 应用帐号的名称。 |
| callback | AuthenticatorCallback | 是 | 认证器回调,用于返回判断结果。 |
### getRemoteObject<sup>9+</sup>
getRemoteObject(): rpc.RemoteObject;
获取认证器的远程对象,不可以重载实现。
**系统能力:**
SystemCapability.Account.AppAccount
**示例:**
**示例:**
```
js
```
js
...
@@ -1768,6 +2262,30 @@ authenticate(name: string, authType: string, callerBundleName: string, options:
...
@@ -1768,6 +2262,30 @@ authenticate(name: string, authType: string, callerBundleName: string, options:
[
account_appAccount
.
Constants
.
KEY_TOKEN
]:
"
xxxxxx
"
};
[
account_appAccount
.
Constants
.
KEY_TOKEN
]:
"
xxxxxx
"
};
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}
}
verifyCredential
(
name
:
string
,
options
:
VerifyCredentialOptions
,
callback
:
AuthenticatorCallback
)
{
callback
.
onRequestRedirected
({
bundleName
:
"
com.example.ohos.accountjsdemo
"
,
abilityName
:
"
com.example.ohos.accountjsdemo.VerifyAbility
"
,
parameters
:
{
name
:
name
}
});
}
setProperties
(
options
:
SetPropertiesOptions
,
callback
:
AuthenticatorCallback
)
{
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
{});
}
checkAccountLabels
(
name
:
string
,
labels
:
Array
&
lt
;
string
&
gt
;,
callback
:
AuthenticatorCallback
)
{
var
result
=
{[
account_appAccount
.
Constants
.
KEY_BOOLEAN_RESULT
]:
false
};
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}
isAccountRemovable
(
name
,
callback
)
{
var
result
=
{[
account_appAccount
.
Constants
.
KEY_BOOLEAN_RESULT
]:
true
};
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}
}
}
export
default
{
export
default
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录