我刚刚开始尝试使用cURLpp,并尝试从Web上读取XML文档。这是网站:
https://www.westlotto.com/wlinfo/WL_InfoService?gruppe=SpielplanToto
当我做一个简单的cURLpp操作时:
try {
curlpp::Cleanup myCleanup;
curlpp::Easy myRequest;
myRequest.setOpt<Url>("http://www.westlotto.com/wlinfo/WL_InfoService?gruppe=SpielplanToto");
myRequest.perform();
}
catch(curlpp::RuntimeError & e) {
...
}
我收到这份文件:
<html>
<title>Request Denied!</title>
<body><center><h1>Request Denied!</h1>
<p>www.westlotto.de</p>
<p>If you have any questions contact the admin.</p>
</center></body>
</html>
使用curl命令行工具,它可以正常工作。我不知道发生了什么以及如何解决这个问题。
谢谢!