- or download this
$response = $ua->request($request);
- or download this
$ua->prepare_request($request);
print($request->as_string);
# $response = $ua->send_request($request);
- or download this
$response = $ua->get($url);
- or download this
$request = HTTP::Request::Common::GET($url);
$response = $ua->request($request);
- or download this
$request = HTTP::Request::Common::GET($url);
$ua->prepare_request($request);
print($request->as_string);
# $response = $ua->send_request($request);