Irtizashahid

Results 1 issues of Irtizashahid

my config/oauth2.php file ``` 'scope_param' => true, 'default_scope' => 'basic', ``` routes.php [Source](https://github.com/lucadegasperi/oauth2-server-laravel/wiki/Securing-your-API-endpoints#checking-the-scopes) ``` $app->group(['prefix' => 'api', 'middleware' => 'oauth:clientscope1'], function($app) { $app->get('resource', function() { return response()->json([ "id" => 1,...