1. Go to this page and download the library: Download srako/openid-connect 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/ */
srako / openid-connect example snippets
use Srako\OpenIDConnect\ClientMetadata;
use Srako\OpenIDConnect\ClientFactory;
$issuerUrl = 'https://example.com';
$clientMetadata = new ClientMetadata('clientid', 'clientsecret', 'https://example.com/callback');
$client = ClientFactory::create($issuerUrl, $clientMetadata);
use Srako\OpenIDConnect\Client;
use Srako\OpenIDConnect\ClientMetadata;
use Srako\OpenIDConnect\Config;
use Srako\OpenIDConnect\Http\HttpClientFactory;
use Srako\OpenIDConnect\Token\TokenVerifierFactory;
use Srako\OpenIDConnect\ProviderMetadata;
$clientMetadata = new ClientMetadata('clientid', 'clientsecret', 'https://example.com/callback');
$providerMetadata = new ProviderMetadata([
ProviderMetadata::AUTHORIZATION_ENDPOINT => 'https://example.com/authorize',
ProviderMetadata::TOKEN_ENDPOINT => 'https://example.com/token',
// ...
])
$config = new Config($providerMetadata, $clientMetadata);
$client = new Client($config, HttpClientFactory::create());
use Srako\OpenIDConnect\Param\CallbackParams;
use Srako\OpenIDConnect\Param\CallbackChecks;
$tokens = $client->handleCallback(
new CallbackParams($_GET),
new CallbackChecks($_SESSION['oauth_state'])
);
use Srako\OpenIDConnect\Grant\ClientCredentials;
use Srako\OpenIDConnect\Param\TokenParams;
$tokens = $client->requestTokens(
new TokenParams(
new ClientCredentials(),
[
TokenParams::SCOPE => 'some scope'
]
)
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.