将json数据导入Elastic时,Content-Type标头[application / x-www-form-urlencoded]不支持错误

时间:2018-09-05 04:53:31

标签: elasticsearch

下面的我的代码

curl -XPOST "http://localhost:9200/test/p
ost/_bulk/"  -d @City_collection.json

错误: {“错误”:“ Content-Type标头[application / x-www-form-urlencoded]不支持 ed“,” status“:406}

1 个答案:

答案 0 :(得分:2)

您需要这样指定内容类型标头

curl -XPOST "http://localhost:9200/test/post/_bulk/" -H "Content-Type: application/json" -d @City_collection.json
                                                                ^
                                                                |
                                                            add this