我正在尝试使用curl命令在我们的一个Crafter交付节点中重新索引solr
curl“http:// {hostname}:{port} / api / 1 / target / deploy / {environment} / {siteName}” - X POST -H“Content-Type:text / json”-d' {“reprocess_all_files”:true}'
根据我们的配置更改curl命令URL但我收到错误“{”message“:”内容类型'text / json; charset = UTF-8'不支持“}”
任何建议都将不胜感激。
答案 0 :(得分:0)
内容类型似乎有误,应该是application/json
,而不是text/json
。文档似乎有错误。