1. Go to this page and download the library: Download shaggyrec/sumsubphp 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/ */
shaggyrec / sumsubphp example snippets
use Shaggyrec\SumSubClient\SumSubClient;
$sumSub = SumSubClient::getInstance('App Token', 'APP Secret');
$sumSub->getAccessToken('userId', 'levelName');
use Shaggyrec\SumSubClient\WebhookHandler;
...
// to verify sender
WebhookHandler::verifySender('x-payload-digest header', $webhookBody, 'secret key')
// to get WebhookResponse object
$webhookResponse = WebhookHandler::handle($webhookBody);