guzzle client throws exception in laravel
问题 I am trying to make a http post request in laravel as below $client = new Client(['debug'=>true,'exceptions'=>false]); $res = $client->request('POST', 'http://www.myservice.com/find_provider.php', [ 'form_params' => [ 'street'=> 'test', 'apt'=> '', 'zip'=> 'test', 'phone'=> 'test', ] ]); It return empty response. On debugging ,following exception is occurring curl_setopt_array(): cannot represent a stream of type Output as a STDIO FILE* I am using latest version of guzzle. Any idea how to