HTTP异常::无法连接到任何解决的端点-CPPRESTSDK

HTTP Exception :: Failed to connect to any resolved endpoint - cpprestsdk

本文关键字:解决 端点 任何 -CPPRESTSDK 连接 异常 HTTP      更新时间:2023-10-16

我正在尝试使用 Microsoft的CPPRESTSDK ,但是我遇到了此错误:

http exception ::无法连接到任何已解决的端点代码:: 101

这是我的代码:

#include <cpprest/http_client.h>
#include <cpprest/filestream.h>
using namespace utility;                    // Common utilities like string conversions
using namespace web;                        // Common features like URIs.
using namespace web::http;                  // Common HTTP functionality
using namespace web::http::client;          // HTTP client features
using namespace concurrency::streams;       // Asynchronous streams
int main(int argc, char* argv[])
{
    auto fileStream = std::make_shared<ostream>();
    // Open stream to output file.
    pplx::task<void> requestTask = fstream::open_ostream(U("results.html")).then([=](ostream outFile)
    {
        *fileStream = outFile;
        // Create http_client to send the request.
        http_client client(U("http://www.bing.com/"));
        // Build request URI and start the request.
        uri_builder builder(U("search"));
        builder.append_query(U("q"), U("cpprestsdk github"));
        return client.request(methods::GET, builder.to_string());
    })
    // Handle response headers arriving.
    .then([=](http_response response)
    {
        printf("Received response status code:%un", response.status_code());
        // Write response body into the file.
        return response.body().read_to_end(fileStream->streambuf());
    })
    // Close the file stream.
    .then([=](size_t)
    {
        return fileStream->close();
    });
    // Wait for all the outstanding I/O to complete and handle any exceptions
    try
    {
        requestTask.wait();
    }
    catch (web::http::http_exception &e)
    {
        printf("HTTP Exception :: %snCode :: %dn", e.what(), e.error_code());
    }
    catch (const std::exception &e)
    {
        printf("Error exception:%sn", e.what());
    }
    return 0;
}

来源:https://github.com/microsoft/cpprestsdk/wiki/getting-started-tutorial

我使用了此

g++ -std=c++11 my_file.cpp -o my_file -lboost_system -lcrypto -lssl -lcpprest
./my_file

构建我的代码。但是我收到的错误代码为101。怎么了?

cpprest 使用 boost asio [1],在您的情况下,这是asio::error::network_unreachable 101。确保您可以访问Internet(例如,尝试使用URL(。

如果您使用代理访问Internet,则需要在http_client中进行配置:

web::http::client::http_client_config cfg;
cfg.set_proxy(web::web_proxy(U("enter your proxy url here")));
// and passing in the to the client constructor
http_client client(U("http://www.bing.com/"), cfg);