mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-03 18:51:53 +05:30
Update ClientInterface.php
This commit is contained in:
parent
69531c3eb5
commit
e5dc3001c4
@ -20,19 +20,21 @@ interface ClientInterface
|
|||||||
*
|
*
|
||||||
* <code>
|
* <code>
|
||||||
* # Client ID + redirect URI
|
* # Client ID + redirect URI
|
||||||
* SELECT oauth_clients.id, oauth_clients.secret, oauth_client_endpoints.redirect_uri, oauth_clients.name
|
* SELECT oauth_clients.id, oauth_clients.secret, oauth_client_endpoints.redirect_uri, oauth_clients.name,
|
||||||
|
* oauth_clients.auto_approve
|
||||||
* FROM oauth_clients LEFT JOIN oauth_client_endpoints ON oauth_client_endpoints.client_id = oauth_clients.id
|
* FROM oauth_clients LEFT JOIN oauth_client_endpoints ON oauth_client_endpoints.client_id = oauth_clients.id
|
||||||
* WHERE oauth_clients.id = :clientId AND oauth_client_endpoints.redirect_uri = :redirectUri
|
* WHERE oauth_clients.id = :clientId AND oauth_client_endpoints.redirect_uri = :redirectUri
|
||||||
*
|
*
|
||||||
* # Client ID + client secret
|
* # Client ID + client secret
|
||||||
* SELECT oauth_clients.id, oauth_clients.secret, oauth_clients.name FROM oauth_clients WHERE
|
* SELECT oauth_clients.id, oauth_clients.secret, oauth_clients.name, oauth_clients.auto_approve FROM oauth_clients
|
||||||
* oauth_clients.id = :clientId AND oauth_clients.secret = :clientSecret
|
* WHERE oauth_clients.id = :clientId AND oauth_clients.secret = :clientSecret
|
||||||
*
|
*
|
||||||
* # Client ID + client secret + redirect URI
|
* # Client ID + client secret + redirect URI
|
||||||
* SELECT oauth_clients.id, oauth_clients.secret, oauth_client_endpoints.redirect_uri, oauth_clients.name FROM
|
* SELECT oauth_clients.id, oauth_clients.secret, oauth_client_endpoints.redirect_uri, oauth_clients.name,
|
||||||
* oauth_clients LEFT JOIN oauth_client_endpoints ON oauth_client_endpoints.client_id = oauth_clients.id
|
* oauth_clients.auto_approve FROM oauth_clients LEFT JOIN oauth_client_endpoints
|
||||||
* WHERE oauth_clients.id = :clientId AND oauth_clients.secret = :clientSecret AND
|
* ON oauth_client_endpoints.client_id = oauth_clients.id
|
||||||
* oauth_client_endpoints.redirect_uri = :redirectUri
|
* WHERE oauth_clients.id = :clientId AND oauth_clients.secret = :clientSecret AND
|
||||||
|
* oauth_client_endpoints.redirect_uri = :redirectUri
|
||||||
* </code>
|
* </code>
|
||||||
*
|
*
|
||||||
* Response:
|
* Response:
|
||||||
@ -44,6 +46,7 @@ interface ClientInterface
|
|||||||
* [client secret] => (string) The client secret
|
* [client secret] => (string) The client secret
|
||||||
* [redirect_uri] => (string) The redirect URI used in this request
|
* [redirect_uri] => (string) The redirect URI used in this request
|
||||||
* [name] => (string) The name of the client
|
* [name] => (string) The name of the client
|
||||||
|
* [auto_approve] => (bool) Whether the client should auto approve
|
||||||
* )
|
* )
|
||||||
* </code>
|
* </code>
|
||||||
*
|
*
|
||||||
@ -54,4 +57,4 @@ interface ClientInterface
|
|||||||
* @return bool|array Returns false if the validation fails, array on success
|
* @return bool|array Returns false if the validation fails, array on success
|
||||||
*/
|
*/
|
||||||
public function getClient($clientId, $clientSecret = null, $redirectUri = null, $grantType = null);
|
public function getClient($clientId, $clientSecret = null, $redirectUri = null, $grantType = null);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user