0
curlppライブラリを使用してPUTリクエストを送信するにはどうすればよいですか?私はhttp POST(以下の例)やGETリクエストを送信する方法を見つけましたが、PUTリクエストには何も見つかりませんでした。CurlppとPUTリクエスト
curlpp::Cleanup cleaner;
curlpp::Easy request;
request.setOpt(new curlpp::options::Url(url));
curlpp::types::WriteFunctionFunctor functor(WriteMemoryCallback);
curlpp::options::WriteFunction *test = new curlpp::options::WriteFunction(functor);
request.setOpt(test);
std::list<std::string> header;
header.push_back("Content-Type: application/json");
request.setOpt(new curlpp::options::HttpHeader(header));
request.setOpt(new curlpp::options::PostFields(message));
request.perform();