c# – 当URL包含端口时,PostAsync不起作用

我的.net应用程序尝试使用下面的代码访问外部API …

using (var keyClient = new HttpClient())
{
    keyClient.BaseAddress = new Uri(ConfigurationManager.AppSettings["webshopurl"]);
    var content = new FormUrlEncodedContent(new[]
    {
        new KeyValuePair<string, string>("api_username",
            ConfigurationManager.AppSettings["webshopAPIUserName"]),
        new KeyValuePair<string, string>("api_password",
            ConfigurationManager.AppSettings["webshopAPIPassword"])
    });
    var result = keyClient.PostAsync("/api/v1/key.php", content).Result;
    token = result.Content.ReadAsStringAsync().Result;
}

从本地机器调用时,它可以正常工作.但是当它在http://app.test.net:5000/test等在线服务器URL中托管时,它不会调用API.如果我们托管像http://app.test.net/test这样的网址,它就能正常运行.

这是什么原因?

最佳答案 你为什么用.Result来解压缩结果?使用await从异步方法获取结果要好得多.

如果你不小心上下文,则结果会导致死锁.

Stephen Cleary有一篇非常好的文章,详细介绍.

Don’t Block on Async Code

点赞