You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys, on iPhone 11 after face id failed. I get the option to use a passcode, however, this is not showing up for me to enter the password, instead the error callback method is called.
This happens for to both .save and .verify
window.plugins.touchid.has('refresh_token', function () {
window.plugins.touchid.verify('refresh_token', 'Verify yourself', function (password) {
console.log("Touch " + password);
}, function (error) {
//this the errorCallback I am referring to
console.log(JSON.stringify(error));
//{"OS": "IOS", "ErrorCode":"-3", "Error-Message":"Fallback authentication mechanism selected"}
});
}, function () {
window.plugins.touchid.save('refresh_token', credentials.refresh_token, true, function (res) {
console.log("Password saved");
}, function (error) {
console.log('we got an error');
});
});
just wondering if I need to do something exist. Thank you
The text was updated successfully, but these errors were encountered:
Hi guys, on iPhone 11 after face id failed. I get the option to use a passcode, however, this is not showing up for me to enter the password, instead the error callback method is called.
This happens for to both
.save
and .verify
just wondering if I need to do something exist. Thank you
The text was updated successfully, but these errors were encountered: