为什么 RestSharp RestClient ExecuteAsync返回根级别的*数据无效。第 1 行,位置 1.*?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的服务器可能会以 HTML 形式返回一些错误,因此响应的反序列化会失败。 可以轻松进行检查。
通过调用和检查
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
and inspecting the
response.Content
property.