HTTP 406不可接受的响应标头提琴手

时间:2019-04-11 04:15:03

标签: json http elasticsearch fiddler http-status-code-406

我将fiddler 4用作elasticsearch的前端服务。

我正尝试使用this之后的API将文档存储到索引中。

这是我的示例json作为请求正文:

{
    "fruit": "Apple",
    "size": "Large",
    "color": "Red"
}

API:http://localhost:9200/food/fruit 方法:POST HTTP/1.1

这是回应:

enter image description here

1 个答案:

答案 0 :(得分:0)

如他们的doc.中所述,“从Elasticsearch 6.0开始,所有包含主体的REST请求也必须提供该主体的正确内容类型。” 添加{{1 }}中的问题已解决。

enter image description here