弹性搜索不起作用

时间:2018-04-15 05:19:34

标签: elasticsearch elasticsearch-net

当我发出弹性搜索请求时,我的帖子和put无法正常工作

我的要求

POST bird/admin/1
{
    "id":"1",
    "ity":"BSP"
}  

它应该成功

但是,错误

{
   "error": "Content-Type header [application/x-www-form-urlencoded; charset=UTF-8] is not supported",
   "status": 406
}

1 个答案:

答案 0 :(得分:1)

您应该使用application / json内容类型。

如果您使用curl,请添加-H'Content-Type:application / json'

https://www.elastic.co/blog/strict-content-type-checking-for-elasticsearch-rest-requests