【问题标题】:FingerPrint Authentication option in Windows 8Windows 8 中的指纹验证选项
【发布时间】:2014-10-22 03:51:10
【问题描述】:

我正在使用 CredentiapPicker Api,但我没有在 Windows 8 项目的选择器中获得指纹扫描仪选项,即使我安装了驱动程序的指纹支持。联想为 Windows 8 提供了单独的驱动程序,所以它不可能在 8 中不受支持。我做错了什么吗。

var credentialPickerOptions = new Windows.Security.Credentials.UI.CredentialPickerOptions();
credentialPickerOptions.targetName = "My App";
credentialPickerOptions.caption = "My App";
credentialPickerOptions.message = "Sign in to My App";
credentialPickerOptions.authenticationProtocol = Windows.Security.Credentials.UI.AuthenticationProtocol.basic;
credentialPickerOptions.alwaysDisplayDialog = true;
var credentialPicker = Windows.Security.Credentials.UI.CredentialPicker;
credentialPicker.pickAsync(credentialPickerOptions).done(function () {
    alert("done");


});

【问题讨论】:

    标签: windows windows-8 windows-runtime windows-8.1 winjs


    【解决方案1】:

    您不会对指纹读取器使用基本身份验证。通常,公司凭据将是协商、kerberos 或 NTLM。尝试切换到该选项并确保您已为登录注册了指纹。

    除了此处记录的选项之外,没有其他选项可以更改该对话框的外观:http://msdn.microsoft.com/en-us/library/windows/apps/windows.security.credentials.ui.credentialpickeroptions.aspx

    【讨论】:

    • 感谢协商,kerberos 或 NTLM 有效。我在左侧显示用户名密码,在右侧显示指纹。但是有没有办法只在选择器显示中显示指纹。
    猜你喜欢
    • 2013-08-09
    • 1970-01-01
    • 2015-05-08
    • 1970-01-01
    • 1970-01-01
    • 2012-04-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多