HttpClient.GetAsync,无效的 URI 异常

Posted

技术标签:

【中文标题】HttpClient.GetAsync,无效的 URI 异常【英文标题】:HttpClient.GetAsync, Invalid URI exception 【发布时间】:2015-10-23 00:15:15 【问题描述】:

下面提到的代码不起作用。我在GetAsync 中得到以下异常:

无效的 URI:无法确定 URI 的格式。

但是,如果我评论 apiClient.BaseAddress 并在 apiClient.GetAsync 中指定完整的 URI,那么它可以正常工作!

有人能解释一下原因吗?

开发环境: VS2012、.NET 4.5、C#、ASP.NET WebForms

代码

private async Task WebAPICall()

    using (var apiClient = new HttpClient())
    
        apiClient.BaseAddress = new Uri("http://localhost:9000/");
        apiClient.DefaultRequestHeaders.Accept.Clear();
        apiClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
        apiClient.Timeout = new TimeSpan(0, 0, 30);

        try
        
            HttpResponseMessage apiResponseMsg = await apiClient.GetAsync(new Uri("api/products/" + txtProductID.Text.Trim()));
            string strResponse = await apiResponseMsg.Content.ReadAsStringAsync();
            Response.Write(strResponse);
        
        catch (Exception ex)
        
            Response.Write(ex.Message);
        

     //using (var apiClient = new HttpClient())
 //private async Task WebAPICall()

【问题讨论】:

提供minimal reproducible example 对于“为什么会发生此错误”非常重要。 IE。在这种情况下,它应该是一行var uri = new Uri("api/products/" + "productId");(我也明白,问题出在哪里可能很痛苦——但“最小”是重要的部分)。 如果您的问题更多是关于使用 BaseAddress(如 ***.com/questions/23438416/…),您可能需要澄清一下。 @AlexeiLevenkov 我提供了完整的方法,因为我看到很多人要求它。 【参考方案1】:

在 *** 上的另一篇文章的帮助下发现了这个问题。感谢@Alexei 提供网址。

更改了 URI 字符串,它工作正常。

HttpResponseMessage apiResponseMsg = await apiClient.GetAsync("api/products/" + txtProductID.Text.Trim());

【讨论】:

以上是关于HttpClient.GetAsync,无效的 URI 异常的主要内容,如果未能解决你的问题,请参考以下文章

使用 HttpClient.GetAsync() 时如何确定 404 响应状态

HttpClient.GetAsync 一次只执行 2 个请求?

如何阻止 HttpClient.GetAsync(uri) 挂起? [复制]

HttpClient.GetAsync 挂起,然后互联网在其执行过程中消失

在 Azure Function 上获取数据时,HttpClient.GetAsync() 会产生 AggregateException

调试器在 Visual Studio 中的异步 HttpClient.GetAsync() 调用后停止