c++中httplib庫的用法是什么

c++
小億
215
2024-05-17 20:06:23
欄目: 編程語言

httplib是一個(gè)用于創(chuàng)建HTTP服務(wù)器和客戶端的C++庫。它提供了簡單的API,可以方便地處理HTTP請(qǐng)求和響應(yīng)。

使用httplib庫創(chuàng)建HTTP服務(wù)器的示例代碼如下:

#include <httplib.h>

int main() {
    httplib::Server svr;

    svr.Get("/hello", [](const httplib::Request& req, httplib::Response& res) {
        res.set_content("Hello World!", "text/plain");
    });

    svr.listen("localhost", 1234);

    return 0;
}

使用httplib庫創(chuàng)建HTTP客戶端的示例代碼如下:

#include <httplib.h>

int main() {
    httplib::Client cli("http://localhost:1234");

    auto res = cli.Get("/hello");
    if (res && res->status == 200) {
        std::cout << res->body << std::endl;
    }

    return 0;
}

通過上述示例代碼可以看出,httplib庫提供了簡單易用的API,可以輕松地創(chuàng)建HTTP服務(wù)器和客戶端,處理HTTP請(qǐng)求和響應(yīng)。

0