【发布时间】:2018-09-05 04:53:30
【问题描述】:
下面是我的代码
curl -XPOST "http://localhost:9200/test/p
ost/_bulk/" -d @City_collection.json
错误: {"error":"Content-Type 标头 [application/x-www-form-urlencoded] 不支持 ed","status":406}
【问题讨论】:
标签: elasticsearch
下面是我的代码
curl -XPOST "http://localhost:9200/test/p
ost/_bulk/" -d @City_collection.json
错误: {"error":"Content-Type 标头 [application/x-www-form-urlencoded] 不支持 ed","status":406}
【问题讨论】:
标签: elasticsearch
你需要像这样指定内容类型标题
curl -XPOST "http://localhost:9200/test/post/_bulk/" -H "Content-Type: application/json" -d @City_collection.json
^
|
add this
【讨论】: