Skip to content

A C++ wrapper around libcurl to facilitate the use of HTTP GET and HTTP POST.

License

Notifications You must be signed in to change notification settings

robinrowe/minicurl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Minicurl

Minicurl is a very simple and limited header-only C++ wrapper around libcurl, intended to make easier the use of HTTP GET and HTTP POST (other types of REST requests are not available yet). Both methods were implemented as static member functions and can be used anywhere in your code without the need to manually initialize or instantiate anything. Be aware that the first call to any of them will also call the function curl_global_init, which is not thread-safe. The results of GET and POST are returned as std::string. Check test.cpp for examples.

This library depends on libcurl. To install the latter in your system, open the terminal and type:

sudo apt-get install -y -f --install-suggests --install-recommends curl libcurl4-openssl-dev

To compile the test, open the terminal and enter the command below (GCC 8 or later is required):

g++ test.cpp -std=c++17 -lcurl -o test.out

Copyright 2019 Jean Diogo (aka Jango)

About

A C++ wrapper around libcurl to facilitate the use of HTTP GET and HTTP POST.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages