溫馨提示×

C++中如何實現(xiàn)HTTP請求

c++
小樊
112
2024-09-06 10:09:57
欄目: 編程語言

在C++中,實現(xiàn)HTTP請求通常需要使用第三方庫,因為標準庫中并沒有直接支持HTTP請求的功能。以下是兩種常見的第三方庫:libcurl和cpprestsdk(也稱為Casablanca)。

  1. 使用libcurl

首先,你需要安裝libcurl庫。在Ubuntu或Debian系統(tǒng)上,可以使用以下命令安裝:

sudo apt-get install libcurl4-openssl-dev

然后,你可以編寫一個簡單的HTTP GET請求,如下所示:

#include<iostream>
#include<string>
#include <curl/curl.h>

int main() {
    CURL *curl;
    CURLcode res;
    std::string url = "http://example.com";

    curl_global_init(CURL_GLOBAL_DEFAULT);
    curl = curl_easy_init();

    if (curl) {
        curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
        res = curl_easy_perform(curl);

        if (res != CURLE_OK) {
            std::cerr << "curl_easy_perform() failed: "<< curl_easy_strerror(res)<< std::endl;
        }

        curl_easy_cleanup(curl);
    }

    curl_global_cleanup();
    return 0;
}
  1. 使用cpprestsdk

首先,你需要安裝cpprestsdk庫。在Ubuntu或Debian系統(tǒng)上,可以使用以下命令安裝:

sudo apt-get install libcpprest-dev

然后,你可以編寫一個簡單的HTTP GET請求,如下所示:

#include<iostream>
#include<string>
#include <cpprest/http_client.h>
#include <cpprest/filestream.h>

using namespace utility;
using namespace web;
using namespace web::http;
using namespace web::http::client;
using namespace concurrency::streams;

int main() {
    http_client client(U("http://example.com"));
    uri_builder builder(U("/"));

    auto response = client.request(methods::GET, builder.to_string()).get();

    if (response.status_code() == status_codes::OK) {
        auto body = response.extract_string().get();
        std::cout<< body<< std::endl;
    } else {
        std::cerr << "Request failed with status code: "<< response.status_code()<< std::endl;
    }

    return 0;
}

這兩個示例都演示了如何發(fā)送一個簡單的HTTP GET請求。你可以根據(jù)需要修改這些示例,以便發(fā)送其他類型的HTTP請求(如POST、PUT或DELETE)或添加其他功能(如處理重定向、設置超時等)。

0