我正在尝试使用Laravel和外部API进行身份验证,并返回一个布尔值,以发布到外部API。
public function api() {
$client = new\GuzzleHttp\Client();
$response = $client->request('post', 'http://localhost:51259/login', [
'form_params' => [
'email' => 'heitor@uva.com',
'senha' => '123',
]
]);
$response = $response->getBody()->getContents();
}
我的路线未到达API:
Route::post('/request', 'HomeController@api')->name('login.teste');
我该怎么办?什么都没发生。它会更改屏幕,但无法访问API来检查电子邮件。