Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
b6b1869c
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,发现更多精彩内容 >>
提交
b6b1869c
编写于
9月 06, 2022
作者:
J
jidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix problem in demo code
Signed-off-by:
N
jidong
<
jidong4@huawei.com
>
上级
e52505dc
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
7 addition
and
4 deletion
+7
-4
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
+2
-0
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
+5
-4
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
浏览文件 @
b6b1869c
...
...
@@ -1523,6 +1523,8 @@ getAuthenticatorCallback(sessionId: string): Promise<AuthenticatorCallback>
**示例:**
```
js
import
featureAbility
from
'
@ohos.ability.featureAbility
'
;
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
featureAbility
.
getWant
().
then
((
want
)
=>
{
var
sessionId
=
want
.
parameters
[
account_appAccount
.
Constants
.
KEY_SESSION_ID
];
...
...
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
浏览文件 @
b6b1869c
...
...
@@ -2326,7 +2326,7 @@ registerInputer(inputer: IInputer): boolean;
**示例:**
```
js
let
pinAuth
=
new
account_osAccount
.
PINAuth
();
let
password
=
new
Uint8Array
([
0
,
0
,
0
,
0
,
0
];
let
password
=
new
Uint8Array
([
0
,
0
,
0
,
0
,
0
]
)
;
let
result
=
pinAuth
.
registerInputer
({
onGetData
:
(
pinSubType
,
callback
)
=>
{
callback
.
onSetData
(
pinSubType
,
password
);
...
...
@@ -2509,7 +2509,7 @@ updateCredential(credentialInfo: CredentialInfo, callback: IIdmCallback): void;
}
});
userIDM
.
openSession
((
err
,
challenge
)
=>
{
userAuth
.
auth
(
challenge
,
credentialInfo
.
credType
,
account_osAccount
.
AuthTrustLevel
.
ATL
_
1
,
{
userAuth
.
auth
(
challenge
,
credentialInfo
.
credType
,
account_osAccount
.
AuthTrustLevel
.
ATL1
,
{
onResult
:
(
result
,
extraInfo
)
=>
{
if
(
result
!=
account_osAccount
.
ResultCode
.
SUCCESS
)
{
return
;
...
...
@@ -2571,8 +2571,9 @@ cancel(challenge: Uint8Array): number;
**示例:**
```
js
let
userIDM
=
new
account_osAccount
.
UserIdentityManager
();
let
challenge
=
1
;
let
cancelresult
=
userIDM
.
cancel
(
challenge
);
let
challenge
=
new
Uint8Array
([
0
]);
let
result
=
userIDM
.
cancel
(
challenge
);
console
.
log
(
"
cancel result:
"
+
result
);
```
### delUser<sup>8+</sup>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录