I try like this : $client = new Client(); $res = $client->request(‘POST’, ‘https://api.orange.com/smsmessaging/v1/outbound/tel:+phone/requests/’, [ ‘headers’ => [ ‘…
Tag: guzzlehttp
What’s the equivalent of GuzzleHttpEventSubscriberInterface in Guzzle 6?
In Guzzle 5.3 you can use event subscribers as in the following example: use GuzzleHttpEventEmitterInterface; use GuzzleHttpEventSubscriberInterface; use GuzzleHttpEventBeforeEvent; use …