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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?