Tokens managment
Information
Flow code, implicit, hybrid
$client = new Svgta\OidcClient\init(
'https://id.provider.com/.well-known/openid-configuration',
'Your_client_id',
'Your_client_secret'
);
$tokenRes = $client->token();
// add options for authentication if needed
// example : $tokenRes->set_auth_method('client_secret_post');
//
$tokens = $tokenRes->get_tokens(); Password grant
Client credentials
Refresh token
Introspect token
Revoke token
Last updated