# Copyright (C) 2015-2018 all contributors # License: AGPL-3.0+ sub stream_to_string { my ($res) = @_; my $body = $res->[2]; my $str = ''; while (defined(my $chunk = $body->getline)) { $str .= $chunk; } $body->close; $str; } 1;