![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/friendsofsymfony/oauth2-php/lib/ |
<?php namespace OAuth2; use OAuth2\Model\IOAuth2Client; /** * Storage engines that support the "Client Credentials" grant type should implement this interface * * @author Dave Rochwerger <[email protected]> * * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.4 */ interface IOAuth2GrantClient extends IOAuth2Storage { /** * Required for OAuth2::GRANT_TYPE_CLIENT_CREDENTIALS. * * @param IOAuth2Client $client The client for which to check credentials. * @param string $clientSecret (optional) If a secret is required, check that they've given the right one. * * @return bool|array Returns true if the client credentials are valid, and MUST return false if they aren't. * When using "client credentials" grant mechanism and you want to * verify the scope of a user's access, return an associative array * with the scope values as below. We'll check the scope you provide * against the requested scope before providing an access token: * @code * return array( * 'scope' => <stored scope values (space-separated string)>, * ); * @endcode * * @see http://tools.ietf.org/html/draft-ietf-oauth-v2-20#section-4.4.2 * * @ingroup oauth2_section_4 */ public function checkClientCredentialsGrant(IOAuth2Client $client, $clientSecret); }