天天看點

16-elasticsearch6.x {“error“:“Content-Type header [application/x-www-form-urlencoded] is not support1.概述

16-elasticsearch6.x {“error“:“Content-Type header [application/x-www-form-urlencoded] is not support1.概述

1.概述

問題:elasticsearch6.x {“error”:“Content-Type header [application/x-www-form-urlencoded] is not supported”

描述:

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/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"}'
           

繼續閱讀