ElasticSearch插入数据报错{"error":"Content-Type header [application/x-www-form-urlencoded] is not supporte

被刻印的时光 ゝ 提交于 2019-12-04 14:56:53

在使用XPUT往ElasticSearch插入数据事情,报错{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}

正确用法时:

curl -H "Content-Type: application/json" -XPUT 'http://192.168.177.11:9200/store/books/2' -d '{
  "title": "Elasticsearch Blueprints",
  "name" : {
    "first" : "Vineeth",
    "last" : "Mohan"
  },
  "publish_date":"2015-06-06",
  "price":"35.99"
}'

需要添加-H "Content-Type: application/json"指明头信息,具体介绍见官网介绍

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!