我设法在 c#(下面的代码)中创建了加密密钥对话框,并且我得到了响应消息的状态代码 ok。没关系。
但现在我想知道,如果同样的想法可以在 javascript 项目中完成?我更喜欢使用 javascript,因为我无法让 ajax 请求在 c# 中工作(我用它来访问来自 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;
}