艾辉 发表于 2019-1-29 10:58:25

elasticsearch6.x {"error":"Content

  问题描述

curl -XPOST 192.168.14.173:32000/test_index_1221/test_type/5 -d '{'user_name':"xiaoming"}'
{"error":"Content-Type header is not supported","status":406}
  官方解释: https://www.elastic.co/cn/blog/strict-content-type-checking-for-elasticsearch-rest-requests
解决方法

curl -H "Content-Type: application/json" -XPOST 192.168.14.173:32000/test_index_1221/test_type/5 -d '{'user_name':"xiaoming"}'
{"error":"Content-Type header is not supported","status":406}
  指定head头



页: [1]
查看完整版本: elasticsearch6.x {"error":"Content