In Drupal 7 sto usando il seguente codice.
$url = 'testdomain/url';
$response = drupal_http_request($url, array('method' => 'POST', 'headers' => array('Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8')));
if ($response->code == "200") {
$result = $response->data;
}
Qual è il codice equivalente che dovrei usare su Drupal 8?