我正在尝试使用来自localhost服务器的curl下载zip文件
http://localhost:8080/zip/json.zip?assetIds=<comma-separated asset ids>
当我在浏览器上输入网址时,文件开始下载没有问题。 所以,当我尝试将curl用于现有的zip文件时:
RestClient::response RestClient::get(const std::string& url)
{
RestClient::response ret = {};
CURL *curl = NULL;
CURLcode res = CURLE_OK;
FILE *fp
curl = curl_easy_init();
if (curl)
{
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
char outfilename[FILENAME_MAX] = "/Users/stage/Documents/temp/json.zip";
fp = fopen(outfilename,"wb");
curl_easy_setopt(curl, CURLOPT_CAINFO, "./ca-bundle.crt");
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, RestClient::write_data);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp);
int i=fclose(fp);
if( i==0)
system("unzip -j json.zip");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, RestClient::write_callback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ret);
curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, RestClient::header_callback);
curl_easy_setopt(curl, CURLOPT_HEADERDATA, &ret);
res = curl_easy_perform(curl);
if (res != CURLE_OK)
{
ret.body = "Failed to query.";
ret.code = -1;
return ret;
}
long http_code = 0;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
ret.code = static_cast<int>(http_code);
curl_easy_cleanup(curl);
curl_global_cleanup();
}
return ret;
}
以及写入文件的功能
size_t RestClient::write_data(void *ptr, size_t size, size_t nmemb, FILE *stream) {
return fwrite(ptr, size, nmemb, stream);
}
当我运行代码时,我收到一条消息:
Archive: json.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of json.zip or
json.zip.zip, and cannot find json.zip.ZIP, period.
用于包含图像的json.zip文件变为EMPTY文件,甚至不是zip:/ 有人知道出了什么问题吗?
答案 0 :(得分:0)
我的脚本(而不是C ++)中的curl命令遇到了完全相同的问题。我终于查看了在文本编辑器中下载的.zip文件,发现它包含一条HTML错误消息,而不是我认为我下载的实际文件。然后我在我的脚本中进行了一些调试并复制了我正在创建的URL并将其粘贴到我的浏览器中。检查URL时,我收到了同样的错误消息。
长话短说,我的网址中输入了一个拼写错误。我冒昧地猜测你有一个非常类似的问题。
在我的情况下,它就像调用shell命令一样简单&#34; curl -o&#34;,你的C ++代码似乎比我正在做的更复杂。
我希望这有助于同样的方式。