$baseUrl = 'http://foo';
$config = array();
$client = new Guzzle\Http\Client($baseUrl, $config);
Quelle est la nouvelle façon de définir l'en-tête par défaut pour Guzzle sans le passer en paramètre sur chaque $client->post($uri, $headers)
?
Il y a $client->setDefaultHeaders($headers)
mais il est obsolète.
setDefaultHeaders is deprecated. Use the request.options array to specify default request options
$client = new Guzzle\Http\Client();
// Set a single header using path syntax
$client->setDefaultOption('headers/X-Foo', 'Bar');
// Set all headers
$client->setDefaultOption('headers', array('X-Foo' => 'Bar'));
Vois ici:
http://docs.guzzlephp.org/en/latest/http-client/client.html#request-options
Si vous utilisez Guzzle v = 6.0. *
$client = new GuzzleHttp\Client(['headers' => ['X-Foo' => 'Bar']]);
lire la doc , il y a plus d'options.
Correct, l'ancienne méthode a été marquée comme @deprecated. Voici la nouvelle méthode suggérée pour définir des en-têtes par défaut pour plusieurs demandes sur le client.
// enter base url if needed
$url = "";
$headers = array('X-Foo' => 'Bar');
$client = new Guzzle\Http\Client($url, array(
"request.options" => array(
"headers" => $headers
)
));
Cela fonctionne pour moi si vous le faites avec drupal;
<?php
$url = 'https://jsonplaceholder.typicode.com/posts';
$client = \Drupal::httpClient();
$post_data = $form_state->cleanValues()->getValues();
$response = $client->request('POST', $url, [
'headers' => ['Content-Type' => 'application/x-www-form-urlencoded'],
'form_params' => $post_data,
'verify' => false,
]);
$body = $response->getBody()->getContents();
$status = $response->getStatusCode();
dsm($body);
dsm($status);