1. Go to this page and download the library: Download onfido/onfido-php 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/ */
onfido / onfido-php example snippets
figuration = Onfido\Configuration::getDefaultConfiguration();
$configuration->setApiToken($_ENV['ONFIDO_API_TOKEN']);
$configuration->setRegion(Onfido\Region::EU); // Supports `EU`, `US` and `CA`
$onfidoApi = new Onfido\Api\DefaultApi(
new \GuzzleHttp\Client([
'timeout' => 30,
'connect_timeout' => 30,
'read_timeout' => 30
]), $configuration);
try {
$applicant = $onfidoApi->createApplicant(
new Onfido\Model\ApplicantBuilder(
[
'first_name' => 'First',
'last_name' => 'Last'
])
);
// To access the information use the getter for the desired property on the object, for example:
$applicant->getFirstName();
// ...
} catch (Onfido\ApiException $ex) {
// Handle API exception
echo 'Caught exception: ', $ex->getMessage(), "\n";
}