cpr

2025-12-10 0 877

C++ Requests: Curl for People

Announcements

  • This project is being maintained by Fabian Sauter and Kilian Traub.
  • For quick help, and discussion libcpr also offers a gitter chat.

Supported Releases

Release Min. C++ Standard Status Notes
master cpp17
1.12.x cpp17
1.10.x – 1.11.x cpp17
<= 1.9.x cpp11

TLDR

C++ Requests is a simple wrapper around libcurl inspired by the excellent Python Requests project.

Despite its name, libcurl\’s easy interface is far from simple, and errors and frustration often arise from mistakes or misuse. By leveraging the more expressive features of C++17 (or C++11 if using cpr <`= 1.9.x), this library distills the process of making network calls into a few clear and concise idioms.

Here\’s a quick GET request:

#include <cpr/cpr.h>

int main(int argc, char** argv) {
    cpr::Response r = cpr::Get(cpr::Url{\"https://api.gi*th**ub.com/repos/whoshuu/cpr/contributors\"},
                      cpr::Authentication{\"user\", \"pass\", cpr::AuthMode::BASIC},
                      cpr::Parameters{{\"anon\", \"true\"}, {\"key\", \"value\"}});
    r.status_code;                  // 200
    r.header[\"content-type\"];       // application/json; charset=utf-8
    r.text;                         // JSON text string
    return 0;
}

And here\’s less functional, more complicated code, without cpr.

Documentation

You can find the latest documentation here. It\’s a work in progress, but it should give you a better idea of how to use the library than the tests currently do.

Features

C++ Requests currently supports:

  • Custom headers
  • URL-encoded parameters
  • URL-encoded POST values
  • Multipart form POST upload
  • File POST upload
  • Basic authentication
  • Bearer authentication
  • Digest authentication
  • NTLM authentication
  • Connection and request timeout specification
  • Timeout for low speed connection
  • Asynchronous requests
  • ? support!
  • Proxy support
  • Callback interfaces
  • PUT methods
  • DELETE methods
  • HEAD methods
  • OPTIONS methods
  • PATCH methods
  • Thread Safe access to libCurl
  • OpenSSL and WinSSL support for HTTPS requests

Planned

For a quick overview about the planned features, have a look at the next Milestones.

Usage

CMake

fetch_content:

If you already have a CMake project you need to integrate C++ Requests with, the primary way is to use fetch_content.
Add the following to your CMakeLists.txt.

include(FetchContent)
FetchContent_Declare(cpr GIT_REPOSITORY https://*gi*th*ub.com/libcpr/cpr.git
                         GIT_TAG da40186618909b1a7363d4e4495aa899c6e0eb75.12.0) # Replace with your desired git commit from: https://gith*ub*.*com/libcpr/cpr/releases
FetchContent_MakeAvailable(cpr)

This will produce the target cpr::cpr which you can link against the typical way:

target_link_libraries(your_target_name PRIVATE cpr::cpr)

That should do it!
There\’s no need to handle libcurl yourself. All dependencies are taken care of for you.
All of this can be found in an example here.

find_package():

If you prefer not to use fetch_content, you can download, build, and install the library and then use CMake find_package() function to integrate it into a project.

Note: this feature is feasible only if CPR_USE_SYSTEM_CURL is set. (see #645)

git clone https://*gi*th*ub.com/libcpr/cpr.git
cd cpr && mkdir build && cd build
cmake .. -DCPR_USE_SYSTEM_CURL=ON
cmake --build . --parallel
sudo cmake --install .

Build Static Library

As an alternative if you want to switch between a static or shared version of cpr use \’-DBUILD_SHARED_LIBS=ON/OFF\’.

git clone https://*gi*th*ub.com/libcpr/cpr.git
cd cpr && mkdir build && cd build
cmake .. -DCPR_USE_SYSTEM_CURL=ON -DBUILD_SHARED_LIBS=OFF
cmake --build . --parallel
sudo cmake --install .

In your CMakeLists.txt:

find_package(cpr REQUIRED)
add_executable(your_target_name your_target_name.cpp)
target_link_libraries(your_target_name PRIVATE cpr::cpr)

Tests

cpr provides a bunch of tests that can be executed via the following commands.

git clone https://*gi*th*ub.com/libcpr/cpr.git
cd cpr && mkdir build && cd build
cmake .. -DCPR_BUILD_TESTS=ON # There are other test related options like \'CPR_BUILD_TESTS_SSL\' and \'CPR_BUILD_TESTS_PROXY\'
cmake --build . --parallel
ctest -VV # -VV is optional since it enables verbose output

Bazel

Please refer to hedronvision/bazel-make-cc-https-easy or

cpr can be added as an extension by adding the following lines to your bazel MODULE file (tested with Bazel 8). Edit the versions as needed.

bazel_dep(name = \"curl\", version = \"8.8.0.bcr.3\")
bazel_dep(name = \"platforms\", version = \"0.0.11\")
bazel_dep(name = \"zlib\", version = \"1.3.1.bcr.5\")
bazel_dep(name = \"boringssl\", version = \"0.20250212.0\")
bazel_dep(name = \"rules_foreign_cc\", version = \"0.14.0\")

http_archive = use_repo_rule(\"@bazel_tools//tools/build_defs/repo:http.bzl\", \"http_archive\")
http_archive(
    name = \"cpr\",
    url = \"https://git*hub.*c*om/libcpr/cpr/archive/refs/tags/1.11.2.tar.gz\",
    strip_prefix = \"cpr-1.11.2\",
    sha256 = \"3795a3581109a9ba5e48fbb50f9efe3399a3ede22f2ab606b71059a615cd6084\",
    build_file_content = \"\"\"
load(\"@rules_foreign_cc//foreign_cc:defs.bzl\", \"cmake\")

filegroup(
    name = \"srcs\",
    srcs = glob([\"**\"], [\"bazel-*/**\"]),
    visibility = [\"//visibility:public\"],
)

cmake(
    name = \"cpr\",
    cache_entries = {
    },
    tags = [\"requires-network\"],
    includes = [\"include/cpr\"],
    lib_source = \":srcs\",
    out_shared_libs = select({
        \"@platforms//os:macos\": [\"libcpr.dylib\"],
        \"@platforms//os:windows\": [\"libcpr.dll\"],
        \"//conditions:default\": [\"libcpr.so.1\"],
    }),
    visibility = [\"//visibility:public\"],
)
\"\"\"
)

Packages for Linux Distributions

Alternatively, you may install a package specific to your Linux distribution. Since so few distributions currently have a package for cpr, most users will not be able to run your program with this approach.

Currently, we are aware of packages for the following distributions:

  • Arch Linux (AUR)
  • Fedora Linux

If there\’s no package for your distribution, try making one! If you do, and it is added to your distribution\’s repositories, please submit a pull request to add it to the list above. However, please only do this if you plan to actively maintain the package.

NuGet Package

For Windows, there is also a libcpr NuGet package available. Currently, x86 and x64 builds are supported with release and debug configuration.

The package can be found here: NuGet.org

Port for macOS

On macOS you may install cpr via MacPorts.org (arm64, x86_64, powerpc)

FreeBSD Port

On FreeBSD, you can issue pkg install cpr or use the Ports tree to install it.

Requirements

The only explicit requirements are:

  • a C++17 compatible compiler such as Clang or GCC. The minimum required version of GCC is unknown, so if anyone has trouble building this library with a specific version of GCC, do let us know
  • in case you only have a C++11 compatible compiler available, all versions below cpr 1.9.x are for you. The 1.10.0 release of cpr switches to C++17 as a requirement.
  • If you would like to perform https requests OpenSSL and its development libraries are required.
  • If you do not use the built-in version of curl but instead use your systems version, make sure you use a version >= 7.64.0. Lower versions are not supported. This means you need Debian >= 10 or Ubuntu >= 20.04 LTS.

Building cpr – Using vcpkg

You can download and install cpr using the vcpkg dependency manager:

git clone https://github**.com*/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
./vcpkg integrate install
./vcpkg install cpr

The cpr port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please create an issue or pull request on the vcpkg repository.

Building cpr – Using Conan

You can download and install cpr using the Conan package manager. Setup your CMakeLists.txt (see Conan documentation on how to use MSBuild, Meson and others).
An example can be found here.

The cpr package in Conan is kept up to date by Conan contributors. If the version is out of date, please create an issue or pull request on the conan-center-index repository.

下载源码

通过命令行克隆项目:

git clone https://github.com/libcpr/cpr.git

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

申明:本文由第三方发布,内容仅代表作者观点,与本网站无关。对本文以及其中全部或者部分内容的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。本网发布或转载文章出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,也不代表本网对其真实性负责。

左子网 编程相关 cpr https://www.zuozi.net/33561.html

PrismLauncher
上一篇: PrismLauncher
webxcel
下一篇: webxcel
常见问题
  • 1、自动:拍下后,点击(下载)链接即可下载;2、手动:拍下后,联系卖家发放即可或者联系官方找开发者发货。
查看详情
  • 1、源码默认交易周期:手动发货商品为1-3天,并且用户付款金额将会进入平台担保直到交易完成或者3-7天即可发放,如遇纠纷无限期延长收款金额直至纠纷解决或者退款!;
查看详情
  • 1、描述:源码描述(含标题)与实际源码不一致的(例:货不对板); 2、演示:有演示站时,与实际源码小于95%一致的(但描述中有”不保证完全一样、有变化的可能性”类似显著声明的除外); 3、发货:不发货可无理由退款; 4、安装:免费提供安装服务的源码但卖家不履行的; 5、收费:价格虚标,额外收取其他费用的(但描述中有显著声明或双方交易前有商定的除外); 6、其他:如质量方面的硬性常规问题BUG等。 注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。
查看详情
  • 1、左子会对双方交易的过程及交易商品的快照进行永久存档,以确保交易的真实、有效、安全! 2、左子无法对如“永久包更新”、“永久技术支持”等类似交易之后的商家承诺做担保,请买家自行鉴别; 3、在源码同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外); 4、在没有”无任何正当退款依据”的前提下,商品写有”一旦售出,概不支持退款”等类似的声明,视为无效声明; 5、在未拍下前,双方在QQ上所商定的交易内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准); 6、因聊天记录可作为纠纷评判依据,故双方联系时,只与对方在左子上所留的QQ、手机号沟通,以防对方不承认自我承诺。 7、虽然交易产生纠纷的几率很小,但一定要保留如聊天记录、手机短信等这样的重要信息,以防产生纠纷时便于左子介入快速处理。
查看详情

相关文章

猜你喜欢
发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务