我想用Put命令调用端点。
在邮差中
我可以放置示例https://example.com/customers/106
。然后我添加application/json
类型的正文(在raw
下)。
当我Put
此主体到端点时,我得到一个200 OK
。
我使用的端点需要两个自定义标头和一个内容类型,这是我在标头下做的。所以我添加了三个标题:X-AppSecretToken
,X-AgreementGrantToken
和Content-Type
(to application/json
)。
在RestSharp中
这里我使用以下内容。 putstr
与我在Postman中的身体Put
完全相同:
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正文编码不同或类似 - 但我真的不确定如何继续前进。我希望有人可以帮忙!
答案 0 :(得分:3)
您的putstr
值似乎是JSON值
AddJsonBody
会将此JSON值转换为另一个JSON值。
您应该使用原始对象而不是putstr
。