用laravel和guzzle消费网络服务

时间:2018-02-04 17:22:55

标签: laravel guzzle

我试图在我的控制器上检索一些信息 使用GuzzleHttp

use \GuzzleHttp\Client;
class ClientsController extends Controller
{     
    public function index()
    {
        $client = new Client(['base_uri' => 'http://localhost/systeml/public/ws/clients']);

        $response = $client->request('GET', '');    
        $contents = $response->getBody()->getContents();    
        dd($contents);
}

运行此命令时出现以下问题

  

(1/1)ServerException服务器错误:GET http://localhost/systeml/public/ws/clients   导致500 Internal Server Error回复:      

guzzle运行正常并且在尝试访问其他本地服务器时遇到问题?

1 个答案:

答案 0 :(得分:2)

在另一个项目中确保在项目的根目录中运行php artisan serve

并使用postman