1. Go to this page and download the library: Download arthem/jwt-request-signer 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/ */
arthem / jwt-request-signer example snippets
use Arthem\JWTRequestSigner\JWTRequestSigner;
use Psr\Http\Message\RequestInterface;
$signer = new JWTRequestSigner(
'signing-key', // Your secret signing key
3600, // Expires in
'x-token' // Optional query parameter name
);
/** @var RequestInterface $requestToSign */
$requestToSign = new PsrRequest('https://domain.tld/images/7b7fae13-2fb4-4c85-bde4-ebd087eb6be5');
$signedRequest = $signer->signRequest($requestToSign);
$signedUri = (string) $signedRequest->getUri();
use Arthem\JWTRequestSigner\JWTRequestSigner;
use Arthem\JWTRequestSigner\Exception\InvalidTokenException;
use Psr\Http\Message\RequestInterface;
$signer = new JWTRequestSigner([/* config */]);
try {
/** @var RequestInterface $currentRequest */
$signer->validateSignedRequest($currentRequest);
} catch (InvalidTokenException $e) {
echo "Access denied";
exit;
}
// Stream your image here...
use Arthem\JWTRequestSigner\JWTRequestSigner;
/** @var JWTRequestSigner $signer */
$signer->addUnsignedHeader('X-Time');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.