我看到的阅读响应的示例如下所示。但这会打印出响应标头以及响应正文。Beast 是否公开了一种将身体作为字符串获取的方法?看起来可以访问res.body
,但我不确定如何获取并转换它。
// Declare a container to hold the response
http::response<http::dynamic_body> res;
// Receive the HTTP response
http::read(socket, buffer, res);
// Write the message to standard out
std::cout << res << std::endl;