我在应用程序中使用curlpp,并且需要获取重定向到的URL。显然,有两种方法:跟踪Location header (难看)或使用curlpp::InfoGetter(curl_easy_getinfo()的c++对应物)。

但是,我该如何使用curlpp::InfoGetter呢?我找不到任何例子。有人简短吗?

最佳答案

好的,我自己发现了:

#include <curlpp/cURLpp.hpp>
#include <curlpp/Easy.hpp>
#include <curlpp/Infos.hpp>

curlpp::Easy request;
request.setOpt(new curlpp::options::Url("http://www.example.com/"));
request.perform();
std::string effective_url = curlpp::infos::EffectiveUrl::get(request);

您可以使用在http://bitbucket.org/jpbarrette/curlpp/src/tip/include/curlpp/Infos.hpp中找到的curl::Info的任何其他子类代替curlpp::infos::EffectiveUrl

关于c++ - 如何使用curlpp的InfoGetter?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3659433/

10-11 22:09