码迷,mamicode.com
首页 > 其他好文 > 详细

elasticsearch6.x {"error":"Content-Type header [ap

时间:2018-11-19 12:34:39      阅读:475      评论:0      收藏:0      [点我收藏+]

标签:user   encode   ast   json   ref   url   ror   index   request   

问题描述

curl -XPOST 192.168.14.173:32000/test_index_1221/test_type/5 -d ‘{‘user_name‘:"xiaoming"}‘
{"error":"Content-Type header [application/x-www-form-urlencoded] 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 [application/x-www-form-urlencoded] is not supported","status":406}

指定head头

elasticsearch6.x {"error":"Content-Type header [ap

标签:user   encode   ast   json   ref   url   ror   index   request   

原文地址:http://blog.51cto.com/461205160/2318702

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!