PHP code example of kwen / laravel-api-auth

1. Go to this page and download the library: Download kwen/laravel-api-auth library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kwen / laravel-api-auth example snippets


   kwen\LaravelApiAuth\ServiceProvider::class,
   

   php artisan vendor:publish --provider="kwen\LaravelApiAuth\ServiceProvider"
   

   protected $routeMiddleware = [
       'api_auth' => \kwen\LaravelApiAuth\Middleware::class,
       // other ...
   ];
   

   php artisan api_auth
   

   'roles' => [
       '{access_key}' => [
           'name' => '{role_name}',        // 角色名字,例如 android
           'secret_key' => '{secret_key}',
       ],
   ],
   

   

   namespace kwen\LaravelApiAuth\Signatures;
   

Route::get('api/example', function(Request $request){
 // $request->get('client_role');
 // todo...
})->middleware(['api_auth']);

\\ or

Route::group(['middleware'=>'api_auth'], function(){
 // routes...
});