1. 程式人生 > >Elasticsearch的status406錯誤:Content-Type heade [xxxxxxxx] is not supported

Elasticsearch的status406錯誤:Content-Type heade [xxxxxxxx] is not supported

在curl指令後 新增 :

-H "Content-Type: application/json"

即可。

例如:

 curl -H "Content-Type: application/json" -XGET 'http://localhost:9200/_count?pretty' -d '
 {
 "query": {
       "match_all": {}
   }
}
'