Skip to content
#

rest-client

Here are 1,123 public repositories matching this topic...

KaiPetzke
KaiPetzke commented Aug 11, 2020

Expected behaviour

The following code snippet:

    RestClient::Connection* conn = new RestClient::Connection("https://httpbin.org");
    RestClient::Response& r = conn->get("/get");
    for(auto& name : { "date", "Date" }) {
        try {
            std::string& value = r.headers.at(name);
            std::cout << name << ": \"" << value << "\"" << std::endl;
        } catch(st
good first issue

Improve this page

Add a description, image, and links to the rest-client topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rest-client topic, visit your repo's landing page and select "manage topics."

Learn more