PHP code example of hogus / api-signature

1. Go to this page and download the library: Download hogus/api-signature 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/ */

    

hogus / api-signature example snippets


protected $middlewareAliases = [
    //...,
    'sign' => \Hogus\ApiSignature\Middleware\ApiSignature::class,
]

Route::middleware('sign:api')->group(function () {
    // your routes
});

use Hogus\ApiSignature\ApiSignatureException;
$this->renderable(function (ApiSignatureException $exception, $request) {
    return response()->json(['message' => $exception->getMessage()]);
});
shell
php artisan vendor:publish --provider=Hogus\\ApiSignature\\ApiSignatureServiceProvider