PHP code example of 96qbhy / simple-jwt
1. Go to this page and download the library: Download 96qbhy/simple-jwt 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' );
96qbhy / simple-jwt example snippets
use Qbhy \SimpleJwt \JWTManager ;
use Qbhy \SimpleJwt \JWT ;
use Qbhy \SimpleJwt \Encoders ;
use Qbhy \SimpleJwt \EncryptAdapters ;
use Qbhy \SimpleJwt \Exceptions ;
$secret = '96qbhy/simple-jwt' ;
$headers = ['ver' => 0.1 ,];
$payload = [
'user_id' => 'qbhy@gmail.com' ,
'tester' => 'qbhy' ,
];
$encrypter = new EncryptAdapters\Md5Encrypter($secret);
$encoder = new Encoders\Base64Encoder();
$cache = function (JWTManager $JWTManager) {
return new \Doctrine\Common\Cache\FilesystemCache(sys_get_temp_dir());
};
$jwtManager = new JWTManager(compact('secret' , 'encode' ,'cache' ));
$jwtManager->setTtl(60 );
$jwtManager->setRefreshTtl(120 );
$jwt0 = $jwtManager->make($payload, $headers);
$token = $jwt0->token();
print_r($token);
try {
$jwt1 = $jwtManager->parse($token);
} catch (Exceptions\TokenExpiredException $tokenExpiredException) {
$jwt1 = $jwtManager->refresh($tokenExpiredException->getJwt(), true );
}
$jwt1->getPayload();
$jwt1->getHeaders();
print_r($jwt1);
$jwt2 = new JWT($jwtManager, $headers, $payload);