2014-10-20 52 views
0

即時我使用CredentiapPicker Api和im沒有得到一個指紋掃描器選項的選擇器爲Windows 8項目,即使我有指紋支持與驅動程序安裝。聯想有單獨的Windows 8驅動程序,所以它不能不支持在8.Am我做錯了什麼。在Windows 8 FingerPrint身份驗證選項

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"); 


}); 

回答

0

您將不會對指紋識別器使用基本身份驗證。正常情況下,企業憑證將進行談判,Kerberos或NTLM。嘗試切換到該位置,並確保您已註冊爲您登錄的指紋。

沒有選項可以更改比這裏所記錄的其他選項該對話框的外觀:http://msdn.microsoft.com/en-us/library/windows/apps/windows.security.credentials.ui.credentialpickeroptions.aspx

+0

感謝協商,Kerberos或NTLM工作。我在左側顯示用戶名密碼,右側顯示指紋。但是有沒有辦法在選擇器顯示中只顯示指紋。 – Query21 2014-10-21 06:06:45