I'm now trying the following, which crashes outright while trying to read a zero memory location:
``` http_client client(U("http://activemesa.com"));
auto task = client.request(methods::GET)
task.wait();```
``` http_client client(U("http://activemesa.com"));
auto task = client.request(methods::GET)
.then([=](http_response resp)
{if (resp.status_code() == status_codes::OK)
{
auto body = resp.extract_string().get();
std::wcout << body;
}
});task.wait();```