Guzzle: handle 400 bad request

后端 未结 2 591
梦毁少年i
梦毁少年i 2020-12-08 07:50

I\'m using Guzzle in Laravel 4 to return some data from another server, but I can\'t handle Error 400 bad request

 [status code] 400 [reason phrase] Bad Requ         


        
2条回答
  •  误落风尘
    2020-12-08 08:34

    $client->get('http://www.example.com/path/'.$path,
                [
                    'allow_redirects' => true,
                    'timeout' => 2000,
                    'http_errors' => true
                ]);
    

    Use http_errors => false option with the request.

提交回复
热议问题