Qual è l'equivalente di una chiamata a drupal_http_request ()?


9

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?

Risposte:



2

Libreria client HTTP aggiunta per sostituire drupal_http_request ()

$client = \Drupal::httpClient();
$request = $client->createRequest('GET', $feed->url);
$request->addHeader('If-Modified-Since', gmdate(DATE_RFC1123, $last_fetched));

try {
  $response = $client->get($feed->uri, [
    'headers' => [
      'If-Modified-Since' => gmdate(DATE_RFC1123, $last_fetched),
    ],
  ]);
  // Expected result.
  // getBody() returns an instance of Psr\Http\Message\StreamInterface.
  // @see http://docs.guzzlephp.org/en/latest/psr7.html#body
  $data = $response->getBody();
}
catch (RequestException $e) {
  watchdog_exception('my_module', $e);
}

1
Non funzionante :( "Il sito Web ha riscontrato un errore imprevisto. Riprovare più tardi.) L'errore del watchdog è: Errore irreversibile irreversibile: l'argomento 3 passato a GuzzleHttp \ Client :: request () deve essere di tipo array, stringa fornita, richiamata /var/www/drupal8/vendor/guzzlehttp/guzzle/src/Client.php sulla riga 87 e definito in GuzzleHttp \ Client-> request () (riga 126 di / var / www / drupal8 / vendor / guzzlehttp / guzzle / src /Client.php)
visabhishek il


L'hanno risolto, ma sì, i record di modifica sono il primo posto da controllare :)
wizonesolutions

Il codice sopra usa $ last_fetched var che non è definito da nessuna parte e anche in un posto usa $ feed-> url e in on $ feed-> uri
Marko Blazekovic

1

Questo funziona per me, inviando un file XML con \ Drupal :: httpClient () POST

$endpoint  = 'http://example.com/something';
$xml = '<>'; // You're XML here.

// Make the request.
$options = [
  'connect_timeout' => 30,
  'debug' => true,
  'headers' => array(
    'Content-Type' => 'text/xml',
  ),
  'body' => $xml,
  'verify'=>true,
];

try {
  $client = \Drupal::httpClient();
  $request = $client->request('POST',$endpoint,$options);

}
catch (RequestException $e){
  // Log the error.
  watchdog_exception('custom_modulename', $e);
}

$responseStatus = $request->getStatusCode();
$responseXml = $request->getBody()->getContents();

Spero che sia di aiuto.

Maggiori informazioni su Guzzle qui: http://docs.guzzlephp.org/en/latest/index.html

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.