使用 HttpRequestException 获取失败请求的响应正文
本文关键字:响应 正文 请求 失败 HttpRequestException 获取 使用 | 更新日期: 2023-09-27 18:36:04
>我正在尝试记录来自HttpRequestException
的失败请求。
我的服务器在响应正文中返回错误代码和其他 JSON 有效负载。我需要访问该 JSON。如果请求出错,如何读取响应正文?我知道实际响应不是空的。这是一个 API,我确认它返回带有 4xx 状态代码的 JSON 有效负载,提供有关错误的详细见解。
如何访问它?这是我的代码:
using (var httpClient = new HttpClient())
{
try
{
string resultString = await httpClient.GetStringAsync(endpoint);
var result = JsonConvert.DeserializeObject<...>(resultString);
return result;
}
catch (HttpRequestException ex)
{
throw ex;
}
}
我正在尝试获取throw ex
行中的数据,但我找不到方法。
正如@Frédéric建议的那样,如果您使用GetAsync
方法,您将获得正确的HttpResponseMessage
对象,该对象提供有关响应的更多信息。若要在发生错误时获取详细信息,可以从响应内容中将错误解救为Exception
或自定义异常对象,如下所示:
public static Exception CreateExceptionFromResponseErrors(HttpResponseMessage response)
{
var httpErrorObject = response.Content.ReadAsStringAsync().Result;
// Create an anonymous object to use as the template for deserialization:
var anonymousErrorObject =
new { message = "", ModelState = new Dictionary<string, string[]>() };
// Deserialize:
var deserializedErrorObject =
JsonConvert.DeserializeAnonymousType(httpErrorObject, anonymousErrorObject);
// Now wrap into an exception which best fullfills the needs of your application:
var ex = new Exception();
// Sometimes, there may be Model Errors:
if (deserializedErrorObject.ModelState != null)
{
var errors =
deserializedErrorObject.ModelState
.Select(kvp => string.Join(". ", kvp.Value));
for (int i = 0; i < errors.Count(); i++)
{
// Wrap the errors up into the base Exception.Data Dictionary:
ex.Data.Add(i, errors.ElementAt(i));
}
}
// Othertimes, there may not be Model Errors:
else
{
var error =
JsonConvert.DeserializeObject<Dictionary<string, string>>(httpErrorObject);
foreach (var kvp in error)
{
// Wrap the errors up into the base Exception.Data Dictionary:
ex.Data.Add(kvp.Key, kvp.Value);
}
}
return ex;
}
用法:
using (var client = new HttpClient())
{
var response =
await client.GetAsync("http://localhost:51137/api/Account/Register");
if (!response.IsSuccessStatusCode)
{
// Unwrap the response and throw as an Api Exception:
var ex = CreateExceptionFromResponseErrors(response);
throw ex;
}
}
这是源文章,详细介绍了有关处理 HttpResponseMessage 及其内容的更多信息。
使用 GetAsync
而不是 GetStringAsync
。 GetAsync
不会引发异常,并允许您访问响应内容、状态代码和您可能需要的任何其他标头。
请参阅此页面了解更多信息。
本质上是@RyanGunn发布但在代码中实现的内容。
您应该能够从resultString.Content
ReadAsStringAsync
我正在开发一个使用类似代码的 SDK,除了我们使用 switch 语句来检查我们打算在DeserializeObject
行之前返回的各种HttpStatusCodes
。
using (var httpClient = new HttpClient())
{
try
{
string resultString = await httpClient.GetStringAsync(endpoint);
var result = JsonConvert.DeserializeObject<...>(resultString.Content.ReadAsStringAsync().Result);
return result;
}
catch (HttpRequestException ex)
{
throw ex;
}
}