我当前正在使用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})
这是在第一次尝试失败时发生的。有没有办法允许在使用密码之前进行多次生物识别尝试?
谢谢!