我正在尝试实施Laracast中所述的代码。
$proxy = Request::create(
'/oauth/token',
'POST'
);
return Route::dispatch($proxy);
这给了我错误找不到类路由。我的问题是我们如何在流明中使用Route:dispatch()? 感谢
答案 0 :(得分:2)
//在流明5.4
global $app; $proxy = Request::create( '/oauth/token', 'post', [ 'grant_type'=>$grant_type, 'client_id'=>$client_id, 'client_secret'=>$client_secret, 'username'=>$username, 'password'=>$password ] ); return $app->dispatch($proxy);
答案 1 :(得分:0)
我找到了解决这个问题的方法。我们可以使用以下代码。
$proxy = Request::create(
'/oauth/token',
'post',
[
'grant_type'=>$grant_type,
'client_id'=>$client_id,
'client_secret'=>$client_secret,
'username'=>$username,
'password'=>$password
]
);
return App::dispatch($proxy);