生态文档
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

安卓活体核身接入文档.md 7.8KB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. # 配置流程
  2. ## 接入配置
  3. ### 注意事项
  4. - 人脸核身 SDK(Faceid)最低支持到 支持 Android 4.0 以上版本 API LEVEL 16,armeabi-v7a。
  5. - 人脸核身 SDK 将以 AAR 文件的形式提供,faceid-release.aar 和 faceplatform-release.aar。
  6. - 人脸核身 SDK 同时需要依赖**公共组件(common-release.aar)**,同样也是以 AAR 文件的形式提供,详情请参见 [添加依赖](#yilai)。
  7. ### 配置证书和签名
  8. 1. 提供应用ID和签名文件md5码获取以下3个证书文件([如何获取应用ID和签名文件md5码](https://cugeducn-my.sharepoint.com/:b:/g/personal/zhouxc_cug_edu_cn/EQA0mcJoDFhPvJmuKXIuumEBuDf-Bo9seappz2OqhW06fQ?e=ZzQoUC)),放入您的项目目录 `app\src\main\assets`。
  9. * aip.license
  10. * idl-key.face-android
  11. * idl-license.face-android
  12. 2. app\build.gradle 内配置:
  13. ```
  14. android {
  15. ...
  16. signingConfigs {
  17. debug {
  18. storeFile file('xxxx.jks')//申请证书时的签名文件
  19. storePassword 'xxxx'
  20. keyAlias = 'xxxx'
  21. keyPassword 'xxxx'
  22. }
  23. }
  24. ...
  25. defaultConfig {
  26. ...
  27. ndk {
  28. abiFilters "armeabi-v7a"//sdk仅支持,大于这个范围运行,会报找不到xxx.so文件
  29. }
  30. ...
  31. }
  32. }
  33. ```
  34. ###
  35. <span id='yilai'></span>
  36. ### 添加依赖
  37. 为人脸核身 SDK 添加依赖的方式:将提供的 AAR 文件加入到 App 工程的 libs 文件夹内,并且在 build.gradle 中添加下面的配置。
  38. ```
  39. android{
  40. //...
  41. repositories {
  42. flatDir {
  43. dirs 'libs' //this way we can find the .aar file in libs folder
  44. }
  45. }
  46. }
  47. //添加依赖
  48. dependencies {
  49. // json依赖
  50. implementation 'com.alibaba:fastjson:1.2.73'
  51. // okHttp依赖
  52. implementation 'com.squareup.okhttp3:okhttp:4.0.0'
  53. // 公共组件
  54. implementation(name: 'common-release', ext: 'aar')
  55. // 人脸核身
  56. implementation(name: 'faceid-release', ext: 'aar')
  57. implementation(name: 'faceplatform-release', ext: 'aar')
  58. }
  59. ```
  60. ### 权限检测
  61. 在AndroidManifest.xml中添加
  62. ```
  63. <uses-permission android:name="android.permission.RECORD_AUDIO"/>
  64. <uses-permission android:name="android.permission.INTERNET"/>
  65. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  66. <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
  67. <uses-permission android:name="android.permission.CAMERA"/>
  68. <uses-permission android:name="android.permission.RECORD_AUDIO"/>
  69. <uses-permission android:name="android.hardware.camera.autofocus"/>
  70. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  71. <uses-permission android:name="android.permission.WRITE_SETTINGS" tools:ignore="ProtectedPermissions" />
  72. ```
  73. - **Android 6.0 以上系统**
  74. SDK 需要用到以上权限,对 Android 6.0 以上的系统 SDK 会做权限的运行时检测。
  75. - **Android 6.0 以下系统**
  76. -由于 Android 6.0 以下系统 Android 并没有运行时权限检测,建议调用方在拉起 SDK 前,对权限进行检测。-
  77. <span id='shili'></span>
  78. # 接入示例
  79. 快速调用:
  80. ```
  81. # 在MainActivity中单击某个按钮的代码逻辑
  82. Credential cert=new Credential();
  83. final FaceidSDK.IDCardInputData inputdata=FaceidSDK.getInstance().new IDCardInputData("xxx","xxx");
  84. cert.setPassword("xxxx");
  85. cert.setUserCode("xxxx");
  86. cert.setUrl("xxxx");
  87. cert.setSysName("xxxx");
  88. FaceidSDK.getInstance().init(MainActivity.this, cert,new FaceidSDK.FaceidLoginListener() {
  89. @Override
  90. public void onLoginSuccess() { //登录成功,拉起 SDK 页面
  91. FaceidSDK.getInstance().startActivity(inputdata, new FaceidSDK.FaceidResultListener() {
  92. @Override
  93. public void onFailed(String errorCode, String errorMsg) {
  94. //txtresult.setText("失败:错误码"+errorCode+";错误信息"+errorMsg);
  95. }
  96. @Override
  97. public void onFinish(FaceidSDK.OutputData result) {
  98. //txtresult.setText("操作完成:识别结果"+result.isSuccess()+";相似分数"+result.getScore());
  99. }
  100. });
  101. }
  102. @Override
  103. public void onLoginFailed(String s, String s1) {
  104. }
  105. });
  106. ```
  107. [完整demo下载](./demo/faceidsdkdemo.rar) (跳转后点击查看**原始文件**)
  108. # 接口详细说明
  109. ## SDK 接口调用方法
  110. SDK 代码调用的入口为 `FaceidSDK` 这个类。
  111. ```
  112. public class FaceidSDK {
  113. /**
  114. * 该类为一个单例,需要先获得单例对象再进行后续操作
  115. */
  116. public static FaceidSDK getInstance(){
  117. // ...
  118. }
  119. /**
  120. * 自定义动作参数,在init执行之前设置才有效
  121. * 设置“人脸动作范围”,“从范围中随机选取几个动作”等参数
  122. */
  123. public void setFaceSDKConfig(FaceSDKConfig faceSDKConfig) {
  124. // ...
  125. }
  126. /**
  127. * 在使用SDK前先初始化,
  128. * 传入证书key `credential`,
  129. * 由 FaceidLoginListener返回是否初始化SDK成功
  130. */
  131. public void init(Context context,Credential credential, FaceidLoginListener loginListerner){
  132. // ...
  133. }
  134. /**
  135. * 入口方法一
  136. * 初始化成功后,调用此函数拉起sdk页面。
  137. * 传入IDCardInputData(身份证,姓名)
  138. * 由FaceidResultListener返回人脸核身结果。
  139. */
  140. public void startActivity(IDCardInputData data,FaceidResultListener resultListener) {
  141. // ...
  142. }
  143. /**
  144. * 入口方法二
  145. * 初始化成功后,调用此函数拉起sdk页面。
  146. * 传入PhotoInputData(照片)
  147. * 由FaceidResultListener返回人脸核身结果。
  148. */
  149. public void startActivity(PhotoInputData data,FaceidResultListener resultListener) {
  150. // ...
  151. }
  152. /**
  153. * 初始化回调接口
  154. */
  155. public interface FaceidLoginListener {
  156. void onLoginSuccess();
  157. void onLoginFailed(String errorCode, String errorMsg);
  158. }
  159. /**
  160. * 人脸核身结果回调接口
  161. */
  162. public interface FaceidResultListener{
  163. void onFailed(String errorCode, String errorMsg);
  164. void onFinish(OutputData result);
  165. }
  166. ```
  167. `startActivity()` 的参数PhotoInputData和IDCardInputData用来传递数据:
  168. ```
  169. String name; //姓名
  170. String idNum; //身份证
  171. ----
  172. DataItem photo;//照片信息
  173. ```
  174. > 以上参数被分别封装在 `FaceidSDK.PhotoInputData`,`FaceidSDK.IDCardInputData` 对象中。
  175. ## 接入示例
  176. 关于接口调用的示例可参考 [接入示例](#shili)
  177. <span id='canshu'></span>
  178. ## 接口参数说明
  179. | IDCardInputData参数 | 说明 | 类型 | 长度(字节) | 是否必填 |
  180. | --- | --- | --- | --- | --- |
  181. | name | 核验人的姓名| String | - | 是 |
  182. | idNum | 核验人的身份证号 | String | 32 | 是 |
  183. | PhotoInputData参数 | 说明 | 类型 | 长度(字节) | 是否必填 |
  184. | --- | --- | --- | --- | --- |
  185. | photo | 核验人的照片,DataItem属性见下表| DataItem | - | 是 |
  186. | DataItem属性 | 说明 | 类型 | 是否必填 |
  187. | --- | --- | --- | --- |
  188. | origin | 文件类型<br/> base64形式:self<br/> 链接形式:uri <br/> | DataItem.DataOrigin | 是 |
  189. | data | 照片内容(base64或uri链接)| String | 是 |
  190. <span id='zidingyi'></span>
  191. ## 动作参数说明
  192. | FaceSDKConfig参数 | 说明 | 类型 |
  193. | --- | --- | --- |
  194. | actions | 动作范围<br/> 可选"eye","mouth","headRight","headLeft","headUp","headDown","yaw"<br/>默认包含所有| List\<String\> |
  195. | actionOrderRandom | 动作顺序是否随机,默认true | boolean |
  196. | actionNum | 随机从actions中选取几个动作,默认3 | int |
  197. ## 动作
  198. | 参数名 | 说明 |
  199. | --- | --- |
  200. | eye | 眨眼 |
  201. | mouth | 张嘴 |
  202. | headRight | 头右转 |
  203. | headLeft | 头左转 |
  204. | headUp | 抬头 |
  205. | headDown | 点头 |
  206. | yaw | 摇头 |
  207. # 错误码
  208. > 非0为未通过