dongpang1898 2018-10-10 22:32
浏览 264
已采纳

Laravel + React,使用Laravel身份验证使用api

we have a Laravel project with react as the front-end. Basically react is inside the laravel project, we used php artisan preset react to add it.

As this application needs authentication, we used the custom laravel auth to give access to the users. Then when the authentication is correct, we redirect the user to a route that will be managed by react and react router. The problem is that we need to consume our API endpoints from the same app, and those endpoints MUST be protected. The laravel Auth is not working there, the sessión information is not being sent on each request. I’ve tried https://laravel.com/docs/5.7/authentication#stateless-http-basic-authentication that although it solves the problem is not convenient to log in and then when want to consume another resource show a prompt to log in again. Also change the api routes to a web middleware is not an option.

Does someone knows how to protect the laravel API routes with the normal laravel authentication

  • 写回答

2条回答 默认 最新

  • dongsechuan0535 2019-04-16 09:51
    关注

    The solution was simple, even that is on the documentation, the necessary steps should be clarified.

    We need to:

    1. Add passport composer require laravel/passport
    2. Make the migrations php artisan migrate
    3. Install passport php artisan passport:install

    The fourth step is more complex. We need to open our User.php model file. And first we need to import the HasApiTokens and tell the model to use it.

    use Laravel\Passport\HasApiTokens;
    
    class User extends Authenticatable
    
    {
    
        use HasApiTokens, Notifiable;
    
        .......
    
    }
    

    Then on our config/auth.php we need to modify the api array and change the driver to passport

    'api' => [
    
        //for API authentication with Passport
    
        'driver' => 'passport',
    
        'provider' => 'users',
    
    ],
    

    Then on our app/Http/Kernel.php we need to add a middleware to the $middlewareGroups array in the key web.

    protected $middlewareGroups = [
    
        'web' => [
    
            ................
    
            //for API authentication with Passport
    
            \Laravel\Passport\Http\Middleware\CreateFreshApiToken::class,
    
        ],
    

    Now we can use the auth:api middleware on our api routes.

    Route::middleware('auth:api')->group( function(){
        ...your routes here
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 outlook无法配置成功
  • ¥15 Pwm双极模式H桥驱动控制电机
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换