Reputation: 33
I am trying to implement the code stated in Laracast.
$proxy = Request::create(
'/oauth/token',
'POST'
);
return Route::dispatch($proxy);
This gives me error Class Route Not found.My question is how can we use Route:dispatch() in lumen ? Thanks
Upvotes: 1
Views: 1871
Reputation: 379
Lumen 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);
Upvotes: 2
Reputation: 33
I found the solution for this problem.We can use the following code.
$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);
Upvotes: 0