Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
aliyun_face_plugin
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
aliyun_face_plugin
Commits
ad3e2d79
提交
ad3e2d79
authored
3月 06, 2025
作者:
张国庆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:ios修改
上级
9d4ab1eb
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
21 行增加
和
18 行删除
+21
-18
main.dart
example/lib/main.dart
+16
-16
pubspec.yaml
example/pubspec.yaml
+1
-1
AliyunFacePlugin.m
ios/Classes/AliyunFacePlugin.m
+4
-1
没有找到文件。
example/lib/main.dart
浏览文件 @
ad3e2d79
...
@@ -47,8 +47,9 @@ class _MyAppState extends State<MyApp> {
...
@@ -47,8 +47,9 @@ class _MyAppState extends State<MyApp> {
try
{
try
{
// 调用认证接口,CertifyId需要调用服务器端接口获取。
// 调用认证接口,CertifyId需要调用服务器端接口获取。
// 每个CertifyId只能使用一次,否则会返回code: "2002(iOS), 1001(Android)"。
// 每个CertifyId只能使用一次,否则会返回code: "2002(iOS), 1001(Android)"。
verifyResult
=
await
_aliyunFacePlugin
.
verify
(
verifyResult
=
await
_aliyunFacePlugin
.
verify
({
"certifyId"
,
"shad04694918b4b774a74bc7e538fc67"
)
??
"certifyId"
:
"shad04694918b4b774a74bc7e538fc67"
,
})
??
'-1,error'
;
'-1,error'
;
}
on
PlatformException
{
}
on
PlatformException
{
verifyResult
=
'-2,exception'
;
verifyResult
=
'-2,exception'
;
...
@@ -66,19 +67,19 @@ class _MyAppState extends State<MyApp> {
...
@@ -66,19 +67,19 @@ class _MyAppState extends State<MyApp> {
appBar:
AppBar
(
title:
const
Text
(
'Aliyun face plugin demo'
)),
appBar:
AppBar
(
title:
const
Text
(
'Aliyun face plugin demo'
)),
body:
Center
(
body:
Center
(
child:
Column
(
children:
<
Widget
>[
child:
Column
(
children:
<
Widget
>[
Text
(
'
$_infos
\n
'
),
Text
(
'
$_infos
\n
'
),
ElevatedButton
(
ElevatedButton
(
onPressed:
()
async
{
onPressed:
()
async
{
getMetaInfos
();
getMetaInfos
();
},
},
child:
Text
(
"getMetaInfos"
)),
child:
Text
(
"getMetaInfos"
)),
ElevatedButton
(
ElevatedButton
(
onPressed:
()
async
{
onPressed:
()
async
{
startVerify
();
startVerify
();
},
},
child:
Text
(
"startVerify"
)),
child:
Text
(
"startVerify"
)),
])),
])),
),
),
);
);
}
}
}
}
\ No newline at end of file
example/pubspec.yaml
浏览文件 @
ad3e2d79
...
@@ -3,7 +3,7 @@ description: Demonstrates how to use the aliyun_face_plugin plugin.
...
@@ -3,7 +3,7 @@ description: Demonstrates how to use the aliyun_face_plugin plugin.
# The following line prevents the package from being accidentally published to
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to
:
'
none'
# Remove this line if you wish to publish to pub.dev
publish_to
:
'
none'
# Remove this line if you wish to publish to pub.dev
version
:
1.0.1+1
environment
:
environment
:
sdk
:
'
>=3.0.0
<4.0.0'
sdk
:
'
>=3.0.0
<4.0.0'
...
...
ios/Classes/AliyunFacePlugin.m
浏览文件 @
ad3e2d79
...
@@ -45,8 +45,11 @@
...
@@ -45,8 +45,11 @@
NSMutableDictionary
*
extParams
=
[
NSMutableDictionary
new
];
NSMutableDictionary
*
extParams
=
[
NSMutableDictionary
new
];
UIViewController
*
vc
=
[
self
viewControllerWithWindow
:
nil
];
UIViewController
*
vc
=
[
self
viewControllerWithWindow
:
nil
];
[
extParams
setValue
:
vc
forKey
:
@"currentCtr"
];
// 必须要的参数
[
extParams
setValue
:
vc
forKey
:
@"currentCtr"
];
// 必须要的参数
NSString
*
useVideo
=
[
arguments
objectForKey
:
@"ext_params_key_use_video"
];
NSString
*
useVideo
=
[
arguments
objectForKey
:
@"ext_params_key_use_video"
];
if
(
useVideo
!=
nil
&&
useVideo
==
"1"
){
NSLog
(
@"useVideo: %@."
,
useVideo
);
if
(
useVideo
!=
nil
&&
[
useVideo
isEqual
:
@"1"
]){
[
extParams
setValue
:
@"true"
forKey
:
@"returnVideo"
];
[
extParams
setValue
:
@"true"
forKey
:
@"returnVideo"
];
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论