C#从JSON阅读器读取时,为属性“ InputArguments”找到了意外的“ StartObject”节点。预期有一个“ PrimitiveValue”节点

时间:2019-03-03 13:22:17

标签: c# json rest-client uipath

我正在使用RestClient将JSON参数传递到C#中的api中,但得到响应

  

“为名为属性的属性发现了意外的'StartObject'节点   从JSON阅读器读取时为“ InputArguments”。 “原始价值”   节点是预期的”

我在C#中使用以下代码

var client_startRobot = new RestClient("https://xxxx.xxxx.com/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs");
var request_startRobot = new RestRequest(Method.POST) ;
request_startRobot.AddParameter("Authorization", string.Format("Bearer " + result), ParameterType.HttpHeader);
request_startRobot.AddHeader("content-type", "application/json");
string parameter = "{\"startInfo\":{\"ReleaseKey\": \"ds32rd1-6c98-42f542d-23bb8111ac91d\",\"RobotIds\": [1],\"JobsCount\": 0,\"Strategy\": \"Specific\",\"InputArguments\": {\"add_name\": \"xxxxx-xxx-\"}}}";
request_startRobot.AddParameter("application/json; charset=utf-8", parameter, ParameterType.RequestBody);
IRestResponse response_startRobot = client_startRobot.Execute(request_startRobot);

1 个答案:

答案 0 :(得分:2)

这似乎是仔细阅读API文档的问题。假设您正按照here的描述尝试调用协调器,那么我发现此示例看起来很像您的示例。

{ "startInfo":
   { "ReleaseKey": "5b754c63-5d1a-4c37-bb9b-74b69e4934bf",
     "Strategy": "Specific",
     "RobotIds": [ 1553 ],
     "NoOfRobots": 0,
     "Source": "Manual",
     "InputArguments": "{\"message\":\"Aloha\"}"
   } 
}

请注意,InputArguments值实际上是一个简单字符串,而不是不是实际JSON(该字符串包含一个转义的JSON字符串)。

您的请求如下:

"InputArguments": {"add_name": "xxxxx-xxx-"}

根据给出的示例,它应如下所示:

"InputArguments": "{\"add_name\": \"xxxxx-xxx-\"}"

您似乎必须对字符串的这一部分进行“双重转义”,如下所示:

\"InputArguments\": \"{\\\"add_name\\\": \\\"xxxxx-xxx-\\\"}\"

实际上,建立一个强类型的请求对象并将序列化留给REST客户端可能会使事情更容易阅读。