1. Go to this page and download the library: Download oire/osst 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/ */
oire / osst example snippets
use Oire\Osst\Osst;
// You should have set your $dbConnection first as a PDO instance
$osst = (new Osst($dbConnection))
->createToken()
->setUserId(123)
->setExpirationTime(time() + 3600)
->setTokenType(3)
->setAdditionalInfo('{"some": "data"}')
->persist();
use Oire\Osst\Exception\OsstInvalidTokenException as tokenError;
use Oire\Osst\Osst;
try {
$osst = (new Osst($dbConnection))->setToken($token);
} catch (TokenError $e) {
// Something went wrong with the token: either it is invalid, not found or has been tampered with
}
if ($osst->tokenIsExpired()) {
// The token is correct but expired
}
// Given that $osst contains a valid token
$osst->invalidateToken(true);