1. Go to this page and download the library: Download henrik/token-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/ */
henrik / token-auth example snippets
namespace App\Helpers;
use HashAuth\TokenManager;
/**
* Class TokenManagerHelper * @package App\Helpers
*/
class TokenManagerHelper {
/**
* @return TokenManager
* @throws \Exception
*/
public static function getManagerInstance()
{
return new TokenManager(
config('hash_auth.token_private_key'),
config('hash_auth.token_private_iv'),
config('hash_auth.signature_private_key')
);
}
}
public function Login(User $user, Request $resuest){
$token = $user->createNewAccessToken($request, $user);
// ...
}
Route::group(['middleware' => ['hash.auth']], function () {
// your routes here
}
Route::get('your-route', 'Controller@Action')->middleware('hash.auth');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.