当我运行curl --help时,我看到了以下可用选项:
--compressed请求压缩响应(使用平放或gzip)
但是,当我访问curl_ 文档的setopt命令时,我没有看到传递这个压缩标志的选项。
如何使用--compressed设置curl_easy_setopt?
发布于 2019-10-29 06:58:32
--compressed等同于CURLOPT_ACCEPT_ENCODING。
https://stackoverflow.com/questions/58599968
复制相似问题