{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}

elasticsearch 请求

curl -XPUT "http://localhost:9200/movies/movie/1" -d'
{
    "title": "The Godfather",
    "director": "Francis Ford Coppola",
    "year": 1972,
    "genres": ["Crime", "Drama"]
}'

错误信息:

{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}

解决方案:

curl -H "Content-Type: application/json"  -XPUT "http://192.168.1.105:9200/movies/movie/1" -d'
{
    "title": "The Godfather",
    "director": "Francis Ford Coppola",
    "year": 1972,
    "genres": ["Crime", "Drama"]
}'

加入了

-H "Content-Type: application/json"

指定请求头部

猜你喜欢

转载自my.oschina.net/u/3238650/blog/1810004