lumen-api-oauth icon indicating copy to clipboard operation
lumen-api-oauth copied to clipboard

The code for a blog post I wrote about creating web apps using a Lumen API that is authenticated by OAuth2

Results 9 lumen-api-oauth issues
Sort by recently updated
recently updated
newest added

Getting following error while running following script sudo php artisan migrate --path=vendor/lucadegasperi/oauth2-server-laravel/migrations PHP Fatal error: Call to undefined method Laravel\Lumen\Application::bindShared() in /var/www/html/demolumenfrs/vendor/lucadegasperi/oauth2-server-laravel/src/Storage/FluentStorageServiceProvider.php on line 54

Session and cookie support has been removed, tried adding it manually with: composer require illuminate/cookie But then get this error: ``` BindingResolutionException in Container.php line 752: Target [Illuminate\Contracts\Cookie\QueueingFactory] is not...

Hello All, Can anybody please help me to sort out this issue, I have tried everything, even downloaded the zip and extract it, but the setup is not working, Is...

After update to 5.2 I have this error: ``` lumen.ERROR: exception 'ErrorException' with message 'Trying to get property of non-object' in \vendor\lucadegasperi\oauth2-server-laravel\src\Storage\FluentClient.php:182 Stack trace: #0 \vendor\lucadegasperi\oauth2-server-laravel\src\Storage\FluentClient.php(182): Laravel\Lumen\Application->Laravel\Lumen\Concerns\{closure}(8, 'Trying to get...

Hi, I just installed the code after reading your super nice article but when I play with things I get a 400 on the resource even though the authentication bearer...

I'm stuck on an infinite loop. Cloned the repo exactly, entered my config details, but when I hit login, there is never a server response. I have a feeling it's...

So after some fiddling around I got the whole login to work. An Object like ``` Object {accessToken: "VlDpwd74kP8Tsa5tpQ3X6cTAXb222gIqOCSaoWAO", accessTokenExpiration: 3600} ``` is returned! :-) But clicking "Request resource" immediately...

Any idea why I get `null` to my `$response` at Proxy.php? ``` ErrorException in Proxy.php line 46: First parameter must either be an object or the name of an existing...

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,...