PHP code example of lemonphp / webhook-shield
1. Go to this page and download the library: Download lemonphp/webhook-shield 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/ */
lemonphp / webhook-shield example snippets
use Lemon\WebhookShield\ServiceProfiles\Facebook;
use Lemon\WebhookShield\WebhookShieldMiddleware;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Factory\AppFactory;
return $res->withStatus(200, 'OK');
})->add($shield);
// other routes
$app->run();