Windows应用商店应用 - 加密密钥对话框

时间:2013-04-10 18:56:50

标签: c# javascript windows-8 windows-runtime windows-store-apps

我设法在c#(下面的代码)中创建加密密钥对话框,我得到响应消息的状态代码ok。没关系。

但是现在我想知道,如果同样的想法可以在javascript项目中完成吗?我更喜欢使用javascript,因为我无法在c#中使用ajax请求(我用它来访问来自api的数据)。

        try
        {
            HttpClientHandler aHandler = new HttpClientHandler();
            aHandler.ClientCertificateOptions = ClientCertificateOption.Automatic;

            HttpClient aClient = new HttpClient(aHandler);
            HttpResponseMessage aResp = await aClient.GetAsync("https://www.somelink.com/"); //this is not the link I used
            txtBlock.Text = aResp.StatusCode.ToString();
        }
        catch (Exception theEx)
        {
            txtBlock.Text = theEx.Message;
        }

enter image description here

1 个答案:

答案 0 :(得分:0)

正如我从这个帖子中看到的那样:

http://social.msdn.microsoft.com/Forums/windowsapps/en-US/0d005703-0ec3-4466-b389-663608fff053/using-client-side-certificates-in-windows-metro?forum=winappswithcsharp

2012年9月6日星期四下午1:15来自Gaurav Mantri(MVP)

他试图在C#和JS中以程序方式导入证书,在JS中他设法做到这一点,所以如果他需要那个证书然后他就会使用它,所以在逻辑上 - 它可以在JS中