elastic search curl 报错'Content-Type header [application/x-www-form-urlencoded] is not supported'
在用 curl post 提交数据的时候报了:{"error" : "Content-Type header [application/x-www-form-urlencoded] is not supported","status" : 406}这样一个错。以前没接触过 elastic search 在网上找到类似这样的curl -XPOST http://localhos...
·
在用 curl post 提交数据的时候报了:
{
"error" : "Content-Type header [application/x-www-form-urlencoded] is not supported",
"status" : 406
}
这样一个错。以前没接触过 elastic search 在网上找到类似这样的
curl -XPOST http://localhost:9200/ht_user/school/_search?pretty=true -d '{"query":{"match_all":{}}}'
curl 查询命令,结果报错了,后来在官方论坛 上找到了原因,从 elastic search 6.0 起,就需要显式地声明 content-type ,改成这样就好了:
curl -XPOST -H 'Content-Type: application/json' http://localhost:9200/ht_user/school/_search?pretty=true -d '{"query":{"match_all":{}}}'
更多推荐
已为社区贡献8条内容
所有评论(0)