PHP code example of raegmaen / openid-connect-php
1. Go to this page and download the library: Download raegmaen/openid-connect-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/ */
raegmaen / openid-connect-php example snippets
$openIdConnectClient = OpenIdConnectFactory::create(
$providerUrl,
$clientId,
$clientSecret,
$callbackUrl
);
$authenticationResult = $this->openIdConnectClient->authenticate($requestData);
if ($authenticationResult instanceof UserRedirect) {
// Redirect user to given Url
}
$claims = $authenticationResult->getIdToken()->getClaims();
$name = $claims->get('given_name');
composer