[C++][原创]ubuntu上C++发送http请求get和post

Posted FL1623863129

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C++][原创]ubuntu上C++发送http请求get和post相关的知识,希望对你有一定的参考价值。

找到一个开源项目:

GitHub - elnormous/HTTPRequest: Single-header C++ HTTP request class

使用项目都有介绍,很简单,这里我在ubuntu上使用CMakeLists跑起来

CMakeList.txt

cmake_minimum_required (VERSION 3.10)
project(test)
add_definitions(-std=c++11)
add_executable(main main.cpp HTTPRequest.hpp)
target_link_libraries(main pthread)

main.cpp

#include<iostream>

#include "HTTPRequest.hpp"

using namespace std;


int main()

  try

    // you can pass http::InternetProtocol::V6 to Request to make an IPv6 request
    http::Request request"http://www.baidu.com";

    // send a get request
    const auto response = request.send("GET");
    std::cout << std::stringresponse.body.begin(), response.body.end() << '\\n'; // print the result

catch (const std::exception& e)

    std::cerr << "Request failed, error: " << e.what() << '\\n';

   

目录结构:

这个库有个缺点:不支持https 

以上是关于[C++][原创]ubuntu上C++发送http请求get和post的主要内容,如果未能解决你的问题,请参考以下文章

[ubuntu][原创]ubuntu上pcl安装C++版

OpenCV在带有C++的iOS上使用base64通过HTTP发送图像

C++非原创|统计代码覆盖率

[C++][原创]websocketcpp编译demo之echo_client正确方法

将文件发送到 HTTP 服务器(C++ Wininet)

Ubuntu C++ 调用http接口