不支持Content-Type标头[application / x-www-form-urlencoded]

时间:2018-01-11 14:26:06

标签: curl elasticsearch elasticsearch-5

我已将Elasticsearch(版本5.5)集成到Gitlab中并尝试使用它。这是我从外部Windows客户端发送的命令:

curl -XGET gitlab.server:9200/ -H 'Content-Type: application/json' -d '{"query": {"simple_query_string" : {"fields" : ["content"], "query" : "foo bar -baz"}}}'

但它不起作用。在客户端我得到这些错误:

  

{“error”:“不支持Content-Type标头[application / x-www-form-urlencoded]”,“状态”:406}
  卷曲:(6)无法解析主持人:文字
  卷曲:(3)第1栏中的[globbing]无与伦比的支撑   卷曲:(3)错误的URL,冒号是第一个字符
  卷曲:(3)第1栏中的[globbing]无与伦比的支撑   卷曲:(3)错误的URL,冒号是第一个字符
  卷曲:(3)第2栏中的[全局]不良范围   curl:(6)无法解析主持人:查询
  卷曲:(3)错误的URL,冒号是第一个字符
  卷曲:(3)第13栏中的[globbing]无与伦比的紧密支撑/支架

在/var/log/elasticsearch/elasticsearch.log中的服务器上,我看不到任何日志消息。

但是,从linux服务器运行与上面相同的命令会给我一个没有错误的响应:

{
  "name" : "name",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "uuid",
  "version" : {
    "number" : "5.5.0",
    "build_hash" : "260387d",
    "build_date" : "2017-06-30T23:16:05.735Z",
    "build_snapshot" : false,
    "lucene_version" : "6.6.0"
  },
  "tagline" : "You Know, for Search"
}

我尝试将http.content_type.required: true添加到elasticsearch.yml,但问题是一样的。那么,我在这里做错了什么?为什么我从Windows客户端获得“不支持Content-Type标头”?我该如何解决这个问题?

将“改为”改为:

curl -XGET gitlab.server:9200/ -H "Content-Type: application/json" -d "{"query": {"simple_query_string" : {"fields" : ["content"], "query" : "foo bar -baz"}}}"

我接受了这个回复:

{
  "name" : "name",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "uuid",
  "version" : {
    "number" : "5.5.0",
    "build_hash" : "260387d",
    "build_date" : "2017-06-30T23:16:05.735Z",
    "build_snapshot" : false,
    "lucene_version" : "6.6.0"
  },
  "tagline" : "You Know, for Search"
}
curl: (6) Could not resolve host: bar

1 个答案:

答案 0 :(得分:14)

将封闭引号从'更改为"后,请转义参数中使用的引号",如下所示:

curl -XGET gitlab.server:9200/ -H "Content-Type: application/json" -d "{\"query\": {\"simple_query_string\" : {\"fields\" : [\"content\"], \"query\" : \"foo bar -baz\"}}}"

alternative是将json放入文件中,并使用@前缀作为参数。

<强> json.txt

{
  "query": {
    "simple_query_string" : { 
      "fields" : ["content"], 
      "query" : "foo bar -baz"
    }
  }
}

并按如下方式运行curl:

curl -XGET gitlab.server:9200/ -H "Content-Type: application/json" -d @json.txt