本文介绍了Kibana后期搜索-需要[START_OBJECT],但找到[VALUE_STRING]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请帮助我解决此问题。
我有一个这样的.Net核心客户端:
var client = new RestClient();
client.BaseUrl = new Uri(Host);
client.AddDefaultHeader("Content-Type", "application/json");
var request = new RestRequest();
request.Resource = "_search";
request.AddJsonBody(queryDslKibana);
request.Method = Method.POST;
request.AddHeader("Content-Type", "application/json");
request.RequestFormat = DataFormat.Json;
URI: http://URL:PORT/_search
queryDslKibana如下:
{"query":{"match":{"message":".Txt"}}}
It runs on postman gracefully but the response on .net is:
{
"error": {
"root_cause": [{
"type": "parsing_exception",
"reason": "Expected [START_OBJECT] but found [VALUE_STRING]",
"line": 1,
"col": 1
}],
"type": "parsing_exception",
"reason": "Expected [START_OBJECT] but found [VALUE_STRING]",
"line": 1,
"col": 1
},
"status": 400
}
请帮助:)
推荐答案
在我看来,变量queryDslKibana没有合适的json格式,在使用
AddJsonBody()方法时,重要的是对象具有合适的格式。 "AddJsonBody()"方法序列化您发送的对象,因此您应该首先尝试匿名对象。
类似的内容:
var requestObject = new {query = new {match = new {message = ".txt"}}};
这应该会产生您需要的JSON:
{"query": {"match": {"message": ". Txt"}}}
这篇关于Kibana后期搜索-需要[START_OBJECT],但找到[VALUE_STRING]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!