Fixed curl params for HEAD requests

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-08-26 00:23:46 +02:00 committed by Roman Tsisyk
parent c54322ebf5
commit d2e015f16f

View file

@ -188,7 +188,15 @@ bool HttpClient::RunHttpRequest()
ScopedRemoveFile body_deleter;
ScopedRemoveFile received_file_deleter;
std::string cmd = "curl -s -w '%{http_code}' -X " + m_httpMethod + " -D '" + headers_deleter.m_fileName + "' ";
std::string cmd = "curl -s -w '%{http_code}' -D '" + headers_deleter.m_fileName + "' ";
// From curl manual:
// This option [-X] only changes the actual word used in the HTTP request, it does not alter
// the way curl behaves. So for example if you want to make a proper
// HEAD request, using -X HEAD will not suffice. You need to use the -I, --head option.
if (m_httpMethod == "HEAD")
cmd += "-I ";
else
cmd += "-X " + m_httpMethod + " ";
for (auto const & header : m_headers)
{