wx.checkIsSupportSoterAuthentication(Object object)

基础库 1.5.0 开始支持,低版本需做兼容处理

获取本机支持的 SOTER 生物认证方式

参数

Object object

属性类型默认值必填说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.success 回调函数

参数
Object res
属性类型说明
supportModeArray.<string>该设备支持的可被SOTER识别的生物识别方式

res.supportMode 的合法值

说明最低版本
fingerPrint指纹识别
facial人脸识别
speech声纹识别(暂未支持)

示例代码

  1. wx.checkIsSupportSoterAuthentication({
  2. success(res) {
  3. // res.supportMode = [] 不具备任何被SOTER支持的生物识别方式
  4. // res.supportMode = ['fingerPrint'] 只支持指纹识别
  5. // res.supportMode = ['fingerPrint', 'facial'] 支持指纹识别和人脸识别
  6. }
  7. })