|
1 年之前 | |
---|---|---|
.. | ||
examples | 1 年之前 | |
include | 1 年之前 | |
CMakeLists.txt | 1 年之前 | |
LICENSE | 1 年之前 | |
README.md | 1 年之前 |
This is a lite, C++ cross-platform header-only client library for http request based on csachs/picohttpclient project.
A Lightweight HTTP 1.1 client where to quickly do very simple HTTP requests, without adding larger dependencies to a project.
http client lite is distributed under the MIT License.
To see how this can be used see the examples folders.
Example:
#include <jdl/httpclientlite.hpp>
...
using namespace jdl;
...
HTTPResponse response = HTTPClient::request(HTTPClient::GET, URI("http://example.com"));
cout << response.body << endl;
...