2
我正在構建一個Windows 8應用程序,我將使用密碼保管庫捕獲和存儲憑據。然後,我想將它們用於所有對特定域的HTTPS請求。這對於單個請求來說很簡單,但我希望它是無縫的。我無法在清單中使用企業認證功能,因爲這些機器未加入域。我已經看過Web身份驗證代理,但這似乎是針對使用OAuth。Windows 8應用程序 - 單點登錄應用程序 - 未加入域
我的問題是,有沒有辦法要麼:
1) Enable Enterprise Authentication and white-list the domain to use
these credentials for (even though these machines are not domain joined)?
2) Use Web Authentication to somehow use
my credentials (that I capture during initial launch) for all HTTPS
requests without OAuth?
3) If none of the above work, what is the
best way to use credentials that are in the Password Vault for all
HTTP requests to a specific domain, rather than pragmatically
submitting them with each request? (want this to be seamless so I
can write HTML without calling on this JavaScript function each
time. Thanks!