gpt4 book ai didi

Odata v3 中的 C# "Resource not found for the segment"错误,状态代码为 200

转载 作者:行者123 更新时间:2023-11-30 18:12:11 27 4
gpt4 key购买 nike

我正在尝试通过 Odata V3 从项目在线 api Url 获取数据。问题是,如果找不到资源,我会得到一个状态码 200,并且请求通过了验证,我的程序会因为无效数据而中断

示例 URL 请求 https://QASystem/DevQA/_api/ProjectData/test

如果测试不存在,我会得到以下响应

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code></code>
<message xml:lang="en-US">Resource not found for the segment 'test'></message>
</error>

即使未找到该段,状态代码也返回 200

我的示例简化了响应检查

HttpResponseMessage response = await ExecutionContext.HttpClient.GetAsync(odataQuery);

// Different checks in real code but here a simple one
if (response.StatusCode.Equals(HttpStatusCode.ServiceUnavailable) ||
response.StatusCode.Equals(HttpStatusCode.RequestTimeout) ||
response.StatusCode.Equals(HttpStatusCode.NotFound)
// Log error Here
throw new TransientFaultException();

即使状态码为 200,如何检查错误数据?有办法处理吗?

最佳答案

如果您想快速解决问题,您可以分析 response.Content 属性以获取相关错误消息。

但是,如果您更愿意以更传统的方式进行,您可以考虑使用 Proper OData client而不是手动调用 HttpClient

关于Odata v3 中的 C# "Resource not found for the segment"错误,状态代码为 200,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55654042/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com