我想在laravel中创建API,以提供数据返回。 我想从this链接获取数据 进入我的laravel控制器。
答案 0 :(得分:1)
您需要从控制器向该网址发出请求。这可以通过拉入喷嘴来完成。请参阅此存储库的自述文件:https://github.com/guzzle/guzzle
答案 1 :(得分:1)
这可以通过拉入枪口来完成。尝试:https://github.com/guzzle/guzzle
$client = new Client();
$body = $client->get('mtaapi.herokuapp.com/stations')->getBody();
$obj = json_decode($body);
希望这可以帮助你!!