PHP code example of steverhoades / oauth2-openid-connect-client
1. Go to this page and download the library: Download steverhoades/oauth2-openid-connect-client 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/ */
steverhoades / oauth2-openid-connect-client example snippets
$signer = new \Lcobucci\JWT\Signer\Rsa\Sha256();
$provider = new \OpenIDConnectClient\OpenIDConnectProvider([
'clientId' => 'demoapp',
'clientSecret' => 'demopass',
// the issuer of the identity token (id_token) this will be compared with what is returned in the token.
'idTokenIssuer' => 'brentertainment.com',
// Your server
'redirectUri' => 'http://example.com/your-redirect-url/',
'urlAuthorize' => 'http://brentertainment.com/oauth2/lockdin/authorize',
'urlAccessToken' => 'http://brentertainment.com/oauth2/lockdin/token',
'urlResourceOwnerDetails' => 'http://brentertainment.com/oauth2/lockdin/resource',
// Find the public key here: https://github.com/bshaffer/oauth2-demo-php/blob/master/data/pubkey.pem
// to test against brentertainment.com
'publicKey' => 'file:///myproj/data/public.key',
],
[
'signer' => $signer
]
);
// send the authorization request
if (empty($_GET['code'])) {
$redirectUrl = $provider->getAuthorizationUrl();
header(sprintf('Location: %s', $redirectUrl), true, 302);
return;
}
// receive authorization response
try {
$token = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code']
]);
} catch (\OpenIDConnectClient\Exception\InvalidTokenException $e) {
$errors = $provider->getValidatorChain()->getMessages();
return;
}
$accessToken = $token->getToken();
$refreshToken = $token->getRefreshToken();
$expires = $token->getExpires();
$hasExpired = $token->hasExpired();
$idToken = $token->getIdToken();
$email = $idToken->claims()->get('email', false);
$allClaims = $idToken->claims();
...
// receive authorization response
try {
$token = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code'],
//adds 60 seconds to currentTime to tolerate 1 minute difference in clocks between IdP and SP
'nbfToleranceSeconds' => 60
]);
} catch (\OpenIDConnectClient\Exception\InvalidTokenException $e) {
$errors = $provider->getValidatorChain()->getMessages();
return;
}
bash
$ php -S localhost:8081 client.php