forked from organicmaps/organicmaps
Fixed curl params for HEAD requests
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
c54322ebf5
commit
d2e015f16f
1 changed files with 9 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue