我需要帮助,因为我不擅长 HTTP 请求。
我正在尝试使用 HTTP 请求在我的 XL 发布服务器上创建发布。现在我正在用 Curl 做它,在一个批处理文件中,就像那样
curl "https://{ID}:{password}@{IP}:{port}/api/v1/templates/Applications/Folder{IDFolder}/create" -i -X POST -H 'Content-Type:application/json' -H 'Accept:application/json' -d %0\..\ReleaseConfig.json
我调用的数据文件与脚本位于同一目录中,是这样的 json:
{ "releaseTitle" : "API Test", "releaseVariables" : { }, "releasePasswordVariables" : { }, "scheduledStartDate" : null, "autoStart" : false }
问题是,我在执行命令时遇到这样的错误:
RESTEASY003065: Cannot consume content type
你知道什么可以帮助我的案子吗?
谢谢