我想用Put命令调用一个端点.
在邮递员中
我可以举一个例子https://example.com/customers/106.然后,我添加一个类型为application / json的主体(在raw下).
当我将此主体放置到端点时,我得到200 OK.
我使用的端点需要两个自定义标头和一个内容类型,它们是在标头下创建的.因此,我添加了三个标头:X-AppSecretToken,X-AgreementGrantToken和Content-Type(到application / json).
在RestSharp中
在这里,我使用以下内容. putstr与我在Postman中放置的物体完全相同:
var restclient = new RestSharp.RestClient("https://example.com");
var request = new RestRequest("/customers/" + customerId, Method.PUT);
request.AddHeader("X-AppSecretToken", systemToken);
request.AddHeader("X-AgreementGrantToken", userToken);
request.AddHeader("Accept", "application/json");
request.AddJsonBody(putstr);
var response = restclient.Execute(request);
现在,当我这样做时,我得到以下响应,这是我正在调用的API中的一个自定义错误:
"{\"message\":\"Error converting value SOME STUFF}}\\\" to type 'eco.rest.Models.Customer'. Path '', line 1, position 605.\",\"errorCode\":\"E00500\",\"developerHint\":\"The JSON payload could not be parsed. The error message should give you a good indication of where the error is located. One common reason for this error is a missing '{' or a '}' in your payload.\",\"logId\":\"123fc6fb4964a141f612ae8ae7571446\",\"httpStatusCode\":400,\"logTime\":\"2018-05-20T21:56:56\"}"
怎么修?
通常,我永远不会问这个问题.如果有人问,我会说:打开Fiddler或类似工具,看看请求有何不同.
我对此有些麻烦,因为它是HTTPS.
当我调试代码时,我根本看不到Fiddler内部的调用.我也安装了查尔斯,但也没有运气.不确定是什么问题.
但是,我认为阅读此书的人可能会提出这个问题.我自己的假设是,我可能以错误的方式添加了标头,JSON主体编码为不同或相似,但我真的不确定如何继续.我希望有人能帮帮忙!
解决方法:
您的putstr值似乎是JSON值.
AddJsonBody会将此JSON值转换为另一个JSON值.
您应该使用原始对象而不是putstr.