使用react-native-keychain进行多次生物识别解锁尝试

时间:2018-11-20 04:34:25

标签: react-native react-native-keychain

我当前正在使用react-native-keychain通过BIOMETRY_ANY_OR_DEVICE_PASSCODE访问控制来保存凭据。

Keychain.setGenericPassword, email, password, {
  accessControl: Keychain.ACCESS_CONTROL.BIOMETRY_ANY_OR_DEVICE_PASSCODE,
  accessible: Keychain.ACCESSIBLE.WHEN_UNLOCKED,
  service: APP_BUNDLE_ID
})

当我尝试使用生物识别技术检索密码并失败时,该应用将回退到设备密码。

Keychain.getGenericPassword({service: APP_BUNDLE_ID})

这是在第一次尝试失败时发生的。有没有办法允许在使用密码之前进行多次生物识别尝试?

谢谢!

0 个答案:

没有答案