PHP code example of ossipesonen / azureadb2ctokenvalidator
1. Go to this page and download the library: Download ossipesonen/azureadb2ctokenvalidator 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/ */
ossipesonen / azureadb2ctokenvalidator example snippets
use AzureADB2CTokenValidator;
$token = "";
$validator = new AzureADB2CTokenValidator\Validator("tenant", "B2C_1_SignUpSignIn", "clientId");
$claims = $validator->validateToken($token);
use AzureADB2CTokenValidator;
# Requires all properties to exist
$cachedKey = new AzureADB2CTokenValidator\PublicKey(["kid" => "", "..."]);
$accessToken = "...";
$verified = new AzureADB2CTokenValidator\Validator("tenant", "B2C_1_SignUpSignIn", "ClientId");
$kid = $verified->getAccessTokenKid($accessToken);
if ($kid === $cachedKey->kid) {
$claims = $this->validateToken($accessToken, $cachedKey);
}