elasticsearch 請求json
curl -XPUT "http://localhost:9200/movies/movie/1" -d' { "title": "The Godfather", "director": "Francis Ford Coppola", "year": 1972, "genres": ["Crime", "Drama"] }'
錯誤信息:app
{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}curl
解決方案:elasticsearch
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"] }'
加入了url
-H "Content-Type: application/json"
指定請求頭部code