为什么 RestSharp RestClient ExecuteAsync返回根级别的*数据无效。第 1 行,位置 1.*?

发布于 2025-01-12 06:28:22 字数 545 浏览 0 评论 0原文

我正在使用 RestSharp 调用微服务 API,并在 RestClient ExecuteAsync 调用中使用 POST 消息来进行测试。数据返回 null,并且返回错误消息,因为根级别的数据无效。第 1 行,位置 1。

在我们的应用程序中使用 API 的正常过程中,该调用将正常工作。 API 返回 FileContentResult。我在内容中看到信息。

        public static async Task<IRestResponse<FileContentResult>> ExecuteAsyncFileRequests(this RestClient client, IRestRequest request)
        {
            var response = await client.ExecuteAsync<FileContentResult>(request);
            return response;
        }

I'm calling a microservice API using RestSharp with a POST message in a RestClient ExecuteAsync call for testing purposes. The data is coming back null and an error message is being returned as Data at the root level is invalid. Line 1, position 1.

The call works otherwise in the normal course of using the API in our application. The API returns a FileContentResult. I see information in the Content.

        public static async Task<IRestResponse<FileContentResult>> ExecuteAsyncFileRequests(this RestClient client, IRestRequest request)
        {
            var response = await client.ExecuteAsync<FileContentResult>(request);
            return response;
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半衬遮猫 2025-01-19 06:28:22

您的服务器可能会以 HTML 形式返回一些错误,因此响应的反序列化会失败。 可以轻松进行检查。

var response = await client.ExecuteAsync(request);

通过调用和检查 response.Content 属性

Your server probably returns some error as HTML, and deserialization of the response fails for that reason. It's easy to check by calling

var response = await client.ExecuteAsync(request);

and inspecting the response.Content property.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文